@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #f5f7fa;
}

.form-container {
  width: 100%;
  max-width: 500px;
  background-color: #f1f6ff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #3a6fb6;
  margin: 0 auto;
  border:2px solid;	
}

.form-title {
  text-align: center;
  font-size: 20px!important;
  font-weight:bold!important;
  color: #3a6fb6!important;
  margin-bottom: 20px!important;
}

.form-group {
  margin-bottom: 16px;
}

label {
  /* display: block; */
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.required {
  color: red;
  margin-right: 2px;
}

input {

  background: inherit!important;
}

input::placeholder {
  color: #b0b0b0;
  font-size: 12px;
}

.submit-button-tools  {
 display: block;
  margin: 20px auto 0 auto;
  background-color: #3a6fb6!important;
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: calc(100% - 48px);
  max-width: 300px;
}

.submit-button:hover {
  background-color: #2f5e9d;
}

/* Password Requirements */
#password-requirements {
    display: none; /* Initially hide password requirements */
    margin-top: 8px;
    font-size: 12px;
    color: #666;
}

.password-rule {
    color: #666;
    margin-bottom: 5px;
}

.password-rule.valid {
    color: green;
}

.password-rule.invalid {
    color: red;
}


.form-feedback {
    /* margin-top: 20px;
    padding: 10px; */
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.success {
    color:#25A32A;
}

.error {
    
    color: #FF4444;
}
/* Loader styles */
/* Loader styles */
.loader {
    display: none;
    border: 8px solid #f3f3f3; /* Light background */
    border-top: 8px solid #3a6fb6; /* Blue color for the spinner */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 20px auto;
}

/* Keyframes for spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#form-feedback {
    /* margin-top: 20px; */
}

/* Feedback message (success/error) */
.form-feedback p {
    font-size: 16px;
    font-weight: bold;
}

