html,
body,
#app {
  /* color-scheme: light dark;
  font-family: system-ui;
  display: flex;
  align-items: center;
  justify-content: center; */
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;

  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings: "wdth" 100;

  background-color: #20639B;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

#main {
    display: none;
}

:root {
    --base-blue: #20639B;
    --bg-blue: #98c7ed;
    --lighter-blue: #cce8ff;
    --grey: #ececec;
    --grey-dark: #4a4a4a;
    --grey-light: #D3D3D3;
    --green: #00e676;
    --green-dark: #148c36;
    --red: #FEE2E2;
    --yellow: #f0e359;
  }
  
  body {
    /* margin: 0; */
    /* font-family: Arial, sans-serif; */
    /* background: var(--grey); */
  }
  
  .container {
    width: 100%;
    height: 100vh;
    position: relative;
  }
  
  .wrapper {
    width: 450px;
    margin: auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .etrack-logo {
    height: 100px;
    margin-bottom: 20px;
  }
  
  input[type="text"],
  input[type="password"] {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid var(--grey-light);
  }
  
  .inline-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 5px;
  }
  
  .inline-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: 1px solid var(--bg-blue);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  
  .inline-wrapper input[type="checkbox"]:checked {
    background-color: var(--bg-blue);
    border-color: var(--bg-blue);
  }
  
  .inline-wrapper label {
    font-size: 16px;
    color: var(--base-blue);
    cursor: pointer;
  }
  
  .inline-wrapper label:hover {
    color: var(--bg-blue);
  }
  
  .inline-wrapper label:active {
    color: var(--base-blue);
  }
  
  button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: var(--bg-blue);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:disabled {
    background-color: var(--red);
    cursor: not-allowed;
  }
  .client-info-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    background-color: var(--grey);
    cursor: not-allowed;
  }
  
  .client-info-wrapper.noclient {
    background-color: var(--red);
  }
  
  .client-info-title {
    font-size: 16px;
    font-weight: bold;
  }
  
  .client-info-value {
    font-size: 16px;
    color: #555;
  }
  #client-info-section {

    width: 350px;
  }
  .faq-section {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
  
  .faq-toggle {
    background-color: var(--lighter-blue);
    color: var(--base-blue);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .faq-content {
    text-align: left;
    background-color: #ffffff;
    border: 1px solid var(--grey-light);
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .faq-content a {
    color: var(--base-blue);
    text-decoration: underline;
  }
  
  .faq-content.hidden {
    display: none;
  }
  