body {
            background: linear-gradient(135deg, #f0f7f4 0%, #e8f3ef 50%, #f8fafb 100%);
            min-height: 100vh;
        }

        .login-page-wrapper {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 16px;
        }

        .login-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(126, 174, 154, 0.1);
            padding: 48px;
            width: 100%;
            max-width: 440px;
            border: 1px solid rgba(126, 174, 154, 0.12);
            animation: fadeSlideUp 0.5s ease forwards;
        }

        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .login-logo img {
            height: 36px;
        }

        .login-divider {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #a0aec0;
            font-size: 0.875rem;
            margin: 24px 0;
        }

        .login-divider::before,
        .login-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e2e8f0;
        }

        .form-label {
            font-weight: 600;
            font-size: 0.875rem;
            color: #2d3748;
            margin-bottom: 6px;
        }

        .form-control {
            border: 1.5px solid #e2e8f0;
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            background: #f8fafb;
        }

        .form-control:focus {
            border-color: #7eae9a;
            box-shadow: 0 0 0 3px rgba(126, 174, 154, 0.15);
            background: #ffffff;
        }

        .input-group .form-control {
            border-right: none;
            border-radius: 12px 0 0 12px;
        }

        .input-group-text {
            background: #f8fafb;
            border: 1.5px solid #e2e8f0;
            border-left: none;
            border-radius: 0 12px 12px 0;
            color: #a0aec0;
            cursor: pointer;
            transition: all 0.2s;
        }

        .input-group-text:hover {
            color: #7eae9a;
        }

        .input-group:focus-within .form-control,
        .input-group:focus-within .input-group-text {
            border-color: #7eae9a;
            box-shadow: none;
        }

        .input-group:focus-within {
            box-shadow: 0 0 0 3px rgba(126, 174, 154, 0.15);
            border-radius: 12px;
        }

        .btn-login {
            background: linear-gradient(135deg, #7eae9a 0%, #6a9b88 100%);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 13px 24px;
            font-weight: 600;
            font-size: 1rem;
            width: 100%;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(126, 174, 154, 0.3);
        }

        .btn-login:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(126, 174, 154, 0.4);
            color: white;
        }

        .btn-login:active {
            transform: translateY(0);
        }

        .btn-google {
            background: #ffffff;
            color: #2d3748;
            border: 1.5px solid #e2e8f0;
            border-radius: 12px;
            padding: 12px 24px;
            font-weight: 600;
            font-size: 0.95rem;
            width: 100%;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-google:hover {
            background: #f8fafb;
            border-color: #cbd5e0;
            color: #2d3748;
        }

        .forgot-link {
            font-size: 0.875rem;
            color: #7eae9a;
            text-decoration: none;
            font-weight: 500;
        }

        .forgot-link:hover {
            color: #6a9b88;
            text-decoration: underline;
        }

        .signup-link {
            color: #7eae9a;
            font-weight: 600;
            text-decoration: none;
        }

        .signup-link:hover {
            color: #6a9b88;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 24px;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            color: #a0aec0;
        }

        .trust-badge i {
            color: #7eae9a;
        }

        .back-home {
            position: fixed;
            top: 20px;
            left: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #4a5568;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.9);
            padding: 8px 14px;
            border-radius: 100px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.2s;
            z-index: 10;
        }

        .back-home:hover {
            background: white;
            color: #7eae9a;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 576px) {
            .login-card {
                padding: 32px 24px;
            }
        }


.loader {
  width: 16px;
  height: 16px;
  position: relative;
  left: -32px;
  border-radius: 50%;
  color: black;
  background: currentColor;
  box-shadow: 32px 0 , -32px 0 ,  64px 0;
}

.loader::after {
  content: '';
  position: absolute;
  left: -32px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 10px;
  background:#7eae9a;
  animation: move 3s linear infinite alternate;
}

@keyframes move {
  0% , 5%{
    left: -32px;
    width: 16px;
  }
  15% , 20%{
    left: -32px;
    width: 48px;
  }
  30% , 35%{
    left: 0px;
    width: 16px;
  }
  45% , 50%{
    left: 0px;
    width: 48px;
  }
  60% , 65%{
    left: 32px;
    width: 16px;
  }

  75% , 80% {
    left: 32px;
    width: 48px;
  }
  95%, 100% {
    left: 64px;
    width: 16px;
  }