  :root {
    --primary: #E94057;
    --secondary: #8A2BE2;
    --dark: #2C3E50;
    --light: #FFFFFF;
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
    --info: #17a2b8;
    --gray: #F0F2F5;
}

  body {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-container {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            width: 90%;
            max-width: 400px;
            text-align: center;
        }

        .site-logo {
            margin-bottom: 20px;
        }

        .site-logo i {
            font-size: 48px;
            color: #4a90e2;
            margin-bottom: 10px;
        }

        .site-title {
            color: #4a90e2;
            font-size: 24px;
            margin-bottom: 30px;
        }

        .login-btn {
            background: white;
            border: 2px solid #eee;
            border-radius: 30px;
            padding: 12px 25px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 16px;
            color: #666;
            transition: all 0.3s ease;
            margin-bottom: 15px;
            cursor: pointer;
        }

        .login-btn:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .login-btn img {
            width: 24px;
            height: 24px;
        }

        .divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 20px 0;
            color: #666;
        }

        .divider::before,
        .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #eee;
        }

        .divider span {
            padding: 0 10px;
        }

        .back-link {
            color: #4a90e2;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .back-link:hover {
            color: #357abd;
            transform: translateX(-5px);
        }

        .features {
            margin-top: 30px;
            text-align: left;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            color: #666;
        }

        .feature-item i {
            color: #4a90e2;
        }

        .terms {
            font-size: 0.8em;
            color: #999;
            margin-top: 20px;
        }

        .terms a {
            color: #4a90e2;
            text-decoration: none;
        }

        .terms a:hover {
            text-decoration: underline;
        }

        .email-form {
            display: none;
            margin-top: 20px;
        }

        .form-group {
            margin-bottom: 15px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #666;
        }

        .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .forgot-password {
            text-align: right;
            font-size: 0.9em;
            margin-bottom: 15px;
        }

        .forgot-password a {
            color: #4a90e2;
            text-decoration: none;
        }

        .signup-prompt {
            margin-top: 15px;
            color: #666;
        }

        .signup-prompt a {
            color: #4a90e2;
            text-decoration: none;
        }

        @media (max-width: 576px) {
            .login-container {
                width: 95%;
                padding: 20px;
            }

            .site-logo i {
                font-size: 36px;
            }

            .site-title {
                font-size: 20px;
            }
        }



.notification-container-1 {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 300px;
    max-width: 400px;
}

.notification-1 {
    padding: 16px 20px;
    border-radius: 12px;
    background: var(--light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease forwards;
    position: relative;
    overflow: hidden;
}

.notification-1.loading {
    border-left: 4px solid var(--warning);
}

.notification-1.success {
    border-left: 4px solid var(--success);
}

.notification-1.error {
    border-left: 4px solid var(--error);
}

.notification-1.info {
    border-left: 4px solid var(--info);
}

.notification-icon-1 {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.notification-1.loading .notification-icon-1 {
    color: var(--warning);
    animation: spin 1s linear infinite;
}

.notification-1.success .notification-icon-1 {
    color: var(--success);
}

.notification-1.error .notification-icon-1 {
    color: var(--error);
}

.notification-1.info .notification-icon-1 {
    color: var(--info);
}

.notification-content-1 {
    flex-grow: 1;
}

.notification-title-1 {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--dark);
}

.notification-message-1 {
    font-size: 0.85rem;
    color: #666;
}

.close-btn-1 {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.close-btn-1:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 480px) {
    .notification-container-1 {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: unset;
    }
    
    .notification-1 {
        padding: 12px 16px;
    }
}