.auth-wrapper {
  display: flex;
  width: 90%;
  max-width: 900px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.auth-form-container {
  flex: 1;
  /* padding: 0 !important; */
  padding-bottom: 1rem;
  padding-top: 1rem;
  padding-left: 1rem;
}

.auth-form-container h2 {
  color: #5f687b;
  font-weight: 700;
  text-transform: uppercase;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.auth-form button {
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 8px;
  background: #006265;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.auth-form button:hover {
  background: #004d4d;
}

.switch-auth {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
}

.switch-auth a {
  color: #006265;
  text-decoration: none;
  font-weight: 600;
}

.switch-auth a:hover {
  text-decoration: underline;
}

.auth-image {
  flex: 1;
  background-image: url(/assets/img/auth-img.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.terms {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #555;
}

.forgot-password {
  text-align: right;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.forgot-password a {
  color: #006265;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.error-message {
  color: red;
  font-size: 0.8em;
  margin-top: -10px;
  margin-bottom: 15px;
  padding-left: 5px;
}

.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.loader {
  border: 4px solid #006265;
  border-top: 4px solid #feb617;
  border-bottom: 4px solid #feb617;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-bottom: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* .modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-icon .icon {
  width: 80px;
  height: 80px;
  color: #e53e3e;
}

.modal-container h2 {
  font-size: 1.8rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.modal-container p {
  color: #4a5568;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

#close-modal {
  padding: 1rem 2rem;
  background-color: #006265;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

#close-modal:hover {
  background-color: #f2f2f2;
  color: #000;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */
.modal-backdrop.show {
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.3);
}
