/*
        :root {
            --primary: #1e3a5f;
            --primary-light: #2d4a6f;
            --primary-foreground: #ffffff;
            --background: #f5f7fa;
            --foreground: #1a2332;
            --card: #ffffff;
            --muted: #e8ecf1;
            --muted-foreground: #64748b;
            --border: #dde3eb;
            --secondary: #e8f0f8;
            --ring: #007BFF;
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }


        .auth-container {
            min-height: 100vh;
            display: flex;
        }




        .auth-panel-left {
    display: none;
    width: 50%;

    background: linear-gradient(150deg,
        #212529 0%,
        #007bff 60%,
        #6fb3e0 100%
    );
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;

    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.decorative-circle-1 {
    top: -10%;
    left: -5%;
    width: 40rem;
    height: 40rem;
}

.decorative-circle-2 {
    bottom: -10%;
    right: -5%;
    width: 30rem;
    height: 30rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

.feature-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

        @media (min-width: 1024px) {
            .auth-panel-left {
                display: flex;
            }
        }

        .auth-panel-left-content {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 4rem;
            color: var(--primary-foreground);
        }


        .decorative-circle {
            position: absolute;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .decorative-circle-1 {
            top: 5rem;
            left: 5rem;
            width: 16rem;
            height: 16rem;
        }

        .decorative-circle-2 {
            bottom: 10rem;
            right: 2.5rem;
            width: 24rem;
            height: 24rem;
            background-color: rgba(255, 255, 255, 0.05);
        }

        .decorative-circle-3 {
            top: 50%;
            left: 33%;
            width: 12rem;
            height: 12rem;
        }

        .auth-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .auth-logo-icon {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 0.75rem;
            background-color: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .auth-logo-icon svg {
            width: 2rem;
            height: 2rem;
        }

        .auth-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .auth-panel-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .auth-panel-description {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 28rem;
            line-height: 1.7;
        }

        .feature-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 2.5rem;
        }

        .feature-pill {
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            background-color: rgba(255, 255, 255, 0.15);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .info-cards {
            margin-top: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .info-card {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .info-card-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 0.5rem;
            background-color: rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-card-icon svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        .info-card-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .info-card-text {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .auth-panel-right {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }

        @media (min-width: 768px) {
            .auth-panel-right {
                padding: 3rem;
            }
        }

        .auth-form-container {
            width: 100%;
            max-width: 28rem;
        }


        .auth-logo-mobile {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 2.5rem;
        }

        @media (min-width: 1024px) {
            .auth-logo-mobile {
                display: none;
            }
        }

        .auth-logo-mobile-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.75rem;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-foreground);
        }

        .auth-logo-mobile-icon svg {
            width: 1.75rem;
            height: 1.75rem;
        }

        .auth-logo-mobile-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--foreground);
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--muted-foreground);
            margin-bottom: 2rem;
            transition: color 0.2s;
        }

        .back-link:hover {
            color: var(--foreground);
        }

        .back-link svg {
            width: 1rem;
            height: 1rem;
        }

        .back-link span {
            font-size: 0.875rem;
            font-weight: 500;
        }


        .reset-icon {
            width: 4rem;
            height: 4rem;
            border-radius: 1rem;
            background-color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .reset-icon svg {
            width: 2rem;
            height: 2rem;
            color: var(--primary);
        }


        .auth-form-header {
            margin-bottom: 2rem;
        }

        .auth-form-title {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--foreground);
            margin-bottom: 0.5rem;
        }

        .auth-form-subtitle {
            color: var(--muted-foreground);
        }

        .auth-form {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }


        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--foreground);
            margin-bottom: 0.5rem;
        }

        .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 {
            width: 100%;
            padding: 0.875rem 1rem 0.875rem 3rem;
            border-radius: 0.75rem;
            border: 1px solid var(--border);
            background-color: var(--background);
            color: var(--foreground);
            font-size: 1rem;
            transition: all 0.2s;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--ring);
            box-shadow: 0 0 0 3px rgba(59, 110, 165, 0.1);
        }

        .form-input::placeholder {
            color: var(--muted-foreground);
        }

        .form-input-with-right-icon {
            padding-right: 3rem;
        }


        .form-options-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .form-checkbox-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
        }

        .form-checkbox {
            width: 1rem;
            height: 1rem;
            border-radius: 0.25rem;
            border: 1px solid var(--border);
            accent-color: var(--primary);
        }

        .form-checkbox-text {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        .form-link {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--primary);
            transition: color 0.2s;
        }

        .form-link:hover {
            color: var(--primary-light);
            text-decoration: underline;
        }


        .btn-primary {
            width: 100%;
            padding: 0.875rem 1.5rem;
            border-radius: 0.75rem;
            border: none;
            background-color: var(--primary);
            color: var(--primary-foreground);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 4px 6px -1px rgba(30, 58, 95, 0.1), 0 2px 4px -2px rgba(30, 58, 95, 0.05);
        }

        .btn-primary:hover {
            background-color: var(--primary-light);
            transform: translateY(-1px);
            box-shadow: 0 10px 15px -3px rgba(30, 58, 95, 0.1), 0 4px 6px -4px rgba(30, 58, 95, 0.05);
        }


        .auth-divider {
            position: relative;
            margin: 2rem 0;
        }

        .auth-divider-line {
            width: 100%;
            height: 1px;
            background-color: var(--border);
        }

        .auth-divider-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 0 1rem;
            background-color: var(--background);
            color: var(--muted-foreground);
            font-size: 0.875rem;
        }

        .social-buttons {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .btn-social {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            border-radius: 0.75rem;
            border: 1px solid var(--border);
            background-color: var(--card);
            color: var(--foreground);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-social:hover {
            background-color: var(--muted);
        }

        .btn-social svg {
            width: 1.25rem;
            height: 1.25rem;
        }


        .help-box {
            margin-top: 2rem;
            padding: 1rem;
            border-radius: 0.75rem;
            background-color: rgba(232, 236, 241, 0.5);
            border: 1px solid var(--border);
        }

        .help-box-title {
            font-weight: 500;
            color: var(--foreground);
            margin-bottom: 0.5rem;
        }

        .help-box-list {
            list-style: none;
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        .help-box-list li {
            margin-bottom: 0.25rem;
        }


        .auth-footer-text {
            text-align: center;
            color: var(--muted-foreground);
            margin-top: 2rem;
        }

        .auth-copyright {
            text-align: center;
            font-size: 0.75rem;
            color: var(--muted-foreground);
            margin-top: 2rem;
        }
 */


 @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%;
  max-width: 420px;
  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 {
  width: 56px;
  height: 56px;
  background-color: #007BFF;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.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;
  }
}
