.register-form input {
  width: 100%;
  padding: 10px 12px; 
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  margin-bottom: 15px;
}

  
.password-container input {
  width: 100%;
  padding-right: 40px; 
}
  

.password-toggle {
  position: absolute;
  right: 10px;
  top: 35%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  line-height: 1;
}


  .error-message,
  .error-msg {
    display: block;
    color: red;
    font-size: 0.875rem;
    margin-top: 5px;
  }
  
  .form-footer-link {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .register-btn {
    width: 100%;
    padding: 12px;
    background-color: #4a84d3;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
  }
  
  .register-btn:hover {
    background-color: #3b6db0;
  }
  

.register-wrapper {
    max-width: 420px;
    margin: 4rem auto;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 47, 92, 0.1);
    font-family: 'Poppins', sans-serif;
  }
  
  .register-wrapper h1 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #002f5c;
  }
  
  .register-form label {
    font-weight: 500;
    margin-top: 1rem;
    display: block;
    color: #002f5c;
  }
  
 
  

 
  .register-btn {
    width: 100%;
    padding: 12px;
    background-color: #4a84d3;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    margin-top: 1.5rem;
    cursor: pointer;
  }
  
  .register-btn:hover {
    background-color: #3b6db0;
  }
  
  .error-msg,
  .error-message {
    color: red;
    font-size: 0.875rem;
    margin-top: 5px;
  }
  
  .form-footer-link {
    text-align: center;
    margin-top: 1rem;
  }
  
  .form-footer-link a {
    color: #004f9f;
    text-decoration: none;
  }
  
  .form-footer-link a:hover {
    text-decoration: underline;
  }



  .password-container {
  position: relative;
  margin-bottom: 15px;
}

.password-container input {
  padding-right: 40px !important;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .register-wrapper {
      margin: 2rem 1.5rem;
      padding: 2rem;
    }
  
    .register-wrapper h1 {
      font-size: 20px;
    }
  
    .register-form label {
      font-size: 14px;
    }
  

    .register-btn {
      font-size: 15px;
      padding: 10px;
    }
  
    .form-footer-link {
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .register-wrapper {
      margin: 1rem 1rem;
      padding: 1.5rem;
      border-radius: 10px;
    }
  
    .register-wrapper h1 {
      font-size: 18px;
    }
  
    .password-toggle {
      right: 8px;
      font-size: 16px;
    }
  
    .register-btn {
      font-size: 14px;
      padding: 10px;
    }
  
    .error-message,
    .error-msg {
      font-size: 13px;
    }
  }
  