/* login.css – Only if you want extra spacing or page-specific styles */
body {
    background-color: var(--light-gray);
    margin: 0;
    padding: 0;
    color: var(--text-color);
  
    /* ⬇️ Vertically center content */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
  
.container {
    max-width: 420px;
    margin: 60px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
  }
  
  input, select {
    background-color: #f1f1f1; /* Make sure inputs are not transparent */
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    color: var(--text-color);
  }
  
  input:focus {
    border-color: var(--royal-blue);
    outline: none;
  }
  
  .section-gap {
    margin-top: 16px;
  }
  
  .footer {
    text-align: center;
    margin-top: 20px !important;
    font-size: 14px;
  }

  .forgot-password {
    text-align: right;
    margin-top: 6px;
    margin-bottom: -10px;
  }
  
  .forgot-password a {
    font-size: 13px;
    color: var(--royal-blue);
    text-decoration: none;
  }
  
  .forgot-password a:hover {
    text-decoration: underline;
  }

  .password-wrapper {
    position: relative;
  }
  
  .password-wrapper input {
    width: 100%;
    padding-right: 60px; /* Creates room for the toggle button */
  }
  
  .toggle-password {
    position: absolute;
    top: 10%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--royal-blue);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    height: auto;
    line-height: 1;
    width: 15%;
  }
  
  /* Prevents hover background from default buttons */
  .toggle-password:hover {
    background: none;
  }
  