
  
        body {
            background: linear-gradient(135deg, #a8e6cf 0%, #dcedc1 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            font-family: 'Figtree', sans-serif;
        }

        .login-container {
            width: 100%;
            max-width: 450px;
        }

        .login-card {
            background: #fff;
            border-radius: 20px;
            padding: 3rem 2rem;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.6s forwards ease-out 0.2s;
        }

        .login-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .app-logo img {
            height: 100px;
            width: 100px;
            border-radius: 50%;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            margin-bottom: 1.5rem;
        }

        .form-control {
            border-radius: 50px;
            padding: 12px 20px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: #43a047;
            box-shadow: 0 0 0 0.25rem rgba(67, 160, 71, 0.25);
        }

        .btn-login {
            background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
            border: none;
            padding: 12px 20px;
            font-weight: 600;
            color: #fff;
            width: 100%;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-login:hover {
            background: linear-gradient(135deg, #388e3c 0%, #1b5e20 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

        .btn-google {
            background: #fff;
            color: #333;
            border: 1px solid #ddd;
            width: 100%;
            padding: 10px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .btn-google:hover {
            background: #f5f5f5;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .password-toggle {
            cursor: pointer;
            background: #f8f9fa;
            border: 1px solid #ced4da;
            border-left: none;
            display: flex;
            align-items: center;
            padding: 0 12px;
            border-top-right-radius: 50px;
            border-bottom-right-radius: 50px;
        }

        .password-toggle:hover {
            background: #e9ecef;
        }

        .input-group:focus-within .password-toggle {
            border-color: #43a047;
        }

        .spinner {
            display: inline-block;
            width: 1rem;
            height: 1rem;
            vertical-align: -0.125em;
            border: 0.2em solid currentColor;
            border-right-color: transparent;
            border-radius: 50%;
            animation: spinner-border 0.75s linear infinite;
            margin-right: 0.5rem;
        }

        @keyframes spinner-border {
            to {
                transform: rotate(360deg);
            }
        }

        .form-label {
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: #495057;
        }

        .text-footer {
            text-align: center;
            margin-top: 2rem;
            color: #000000;
            font-size: 0.9rem;
        }
    