body {
    font-family: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

main.pb-3 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100vh !important;
}

/* body {
    background: linear-gradient(97deg, #04182b 14.15%, #0c285f 42.56%, #29175b 76.97%);
    background-size: 400% 400%;
    animation: breathing 10s infinite alternate;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
} */

/* @keyframes breathing {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
} */

.login-container {
    display: flex;
    justify-content: center;
    margin-inline: 20px;
    background: #fff;
    box-shadow: 0 4px 4px #2235df33;
    border-radius: 15px;
    padding: 50px 80px 80px 80px;
}
.login-box {
    display: flex;
    flex-direction: column;
}

.login-container h2 {
    font-size: 38px;
    line-height: 50px;
    font-weight: 300;
    margin-bottom: 10px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
}

.login-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #2235df;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.login-btn:hover {
    background: #1d3097;
}

.underline {
    text-decoration: none;
    color: black;
    padding-inline: 20px;
    padding-bottom: 4px;
    border-bottom: 1px solid lightgray;
}
.underline:hover {
    text-decoration: none;
    color: black;
    border-bottom: 5px solid #79D4FF;
}
.divider {
    width: 30px;
    border-bottom: 1px solid lightgray;
}
.underline.active {
    text-decoration: none;
    font-weight: 700;
    padding-bottom: 4px;
    border-bottom: 5px solid #79D4FF;
}

/* Security Page */
.security-code-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 60px;
    gap: 50px;

    border-radius: 4px;
    background: var(--Background-grey, #F8F8FA);
}

.security-waarning {
}

/* SelectUser Page */

/* Card container */
.card {
    max-width: 400px;
    margin: 3rem auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 24px;
    font-family: Arial, sans-serif;
  }
  
  /* Header styling */
  .card-header h2 {
    margin: 0;
    font-size: 1.5rem;
  }
  
  .card-header p {
    color: #666;
    margin: 0.25rem 0 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Client list */
  .client-list {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 280px;

    max-height: 342px;
    overflow-y: auto;   /* or 'scroll' if you want the bar always visible */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* smooth on iOS */
  }
  
  /* Each item */
  .client-item {
    display: flex;
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
    padding: 12px 10px;

    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  /* Divider between items */
  .client-list li {
    border-bottom: 1px solid #eee;
  }
  
  /* Hover state */
  .client-item:hover {
    background: #f5f5f5;
  }
  
  /* Text block */
  .client-details {
    display: flex;
    flex-direction: column;
  }
  
  .client-name {
    font-weight: 700;
  }
  
  .client-number {
    font-size: 0.85rem;
    color: #777;
  }
  
  /* Error alert */
  .alert {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #fdecea;
    color: #b02a37;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  .client-icon {
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: var(--primary-color); /* Fallback color */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .icon-image {
    width: 100%;
    height: 100%;
  }
  
/* ─── animation ────────────────────────────────────────────── */
@keyframes breathe {
  0%,100% {                       /* baseline */
    transform: translateX(var(--x)) translateY(var(--y));
  }
  50% {                           /* float up 8 px */
    transform: translateX(var(--x))
               translateY(calc(var(--y) - 8px));
  }
}

/* ─── wrapper ──────────────────────────────────────────────── */
.breathing-dots{
  display:inline-flex;
  justify-content:center;
  align-items:flex-end;     /* common baseline */
  gap:15px;
}

/* ─── single dot ───────────────────────────────────────────── */
.dot{
  --x: calc(var(--i) * 0px);   /* moves dot right   */
  --y: calc(var(--i) * 0px);   /* lifts dot up      */

  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--primary-color, #d46c53);

  transform:translateX(var(--x)) translateY(var(--y));
  animation:breathe 1.2s ease-in-out calc(var(--i)*.15s) infinite;
}

/* ========== Mobile ≤ 600 px ========== */
@media (max-width:600px){
  .login-container {
    padding: 20px;
    padding-bottom: 40px;
  }
  .list-options {
    gap: 20px;
  }
}