
 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f0f4f8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  height: 100%;
  /* display: flex; */
  max-height: 100vh;
  margin-bottom: 10px;
  max-width: 600px;
  padding: 20px;
}

.card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 10px 40px rgba(0, 123, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.brand {
  text-align: center;
  margin-bottom: 36px;
}

.brand-icon {
  /* Remove the blue background completely */
  background: transparent !important;
  background-color: transparent !important;

  /* Keep the clean, large standard size */
  width: 290px !important;
  height: 200px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 24px !important;

  /* Set padding to 0 so the logo image can use the full 200px space */
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Make sure the logo image scales beautifully to fill the transparent square */
.brand-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* Keep the extra white circle completely hidden */
.brand-icon::after {
  content: none !important;
  display: none !important;
  border: none !important;
  width: 0 !important;
  height: 0 !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.brand-icon::after {
  content: "";
  width: 24px;
  height: 24px;
  border: 3px solid #ffffff;
  border-radius: 50%;
}

.brand h1 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.brand p {
  font-size: 14px;
  color: #7a7a8e;
  font-weight: 300;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  border: 1.5px solid #e0e4ea;
  border-radius: 10px;
  background-color: #fafbfc;
  color: #1a1a2e;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus {
  border-color: #007BFF;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  background-color: #ffffff;
}

.form-input-wrapper {
            position: relative;
        }

        .form-input-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--muted-foreground);
            pointer-events: none;
        }

        .form-input-icon svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        .form-input-icon-right {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--muted-foreground);
        }

        .form-input-icon-right svg {
            width: 1.25rem;
            height: 1.25rem;
        }

         .form-input-with-right-icon {
            padding-right: 3rem;
        }


.form-group input::placeholder {
  color: #b0b5c0;
  font-weight: 300;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 13px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5a5a6e;
}

.remember-me input[type="checkbox"] {
  accent-color: #007BFF;
  width: 15px;
  height: 15px;
}

.forgot-link {
  color: #007BFF;
  text-decoration: none;
  font-weight: 500;
}

.forgot-link:hover {
  text-decoration: underline;
}

.btn {
  width: 100%;
  padding: 13px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-primary {
  background-color: #007BFF;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-primary:active {
  transform: scale(0.98);
}

.divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  color: #b0b5c0;
  font-size: 12px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e0e4ea;
}

.divider::before {
  margin-right: 12px;
}

.divider::after {
  margin-left: 12px;
}

.footer-text {
  text-align: center;
  font-size: 13px;
  color: #7a7a8e;
  margin-top: 24px;
}

.footer-text a {
  color: #007BFF;
  text-decoration: none;
  font-weight: 500;
}

.footer-text a:hover {
  text-decoration: underline;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #007BFF;
  text-decoration: none;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}

.info-text {
  text-align: center;
  font-size: 13px;
  color: #7a7a8e;
  line-height: 1.6;
  margin-bottom: 28px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border: 3px solid #007BFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}

.success-icon::after {
  content: "";
  width: 18px;
  height: 28px;
  border-right: 3px solid #007BFF;
  border-bottom: 3px solid #007BFF;
  transform: rotate(45deg);
  margin-top: -6px;
}

.password-requirements {
  font-size: 12px;
  color: #7a7a8e;
  margin-top: 6px;
  padding-left: 4px;
}

@media (max-width: 480px) {
  .card {
    padding: 36px 24px;
  }

  .brand h1 {
    font-size: 20px;
  }
}
