/* Admin Login Page Styles - Matching Theme */
:root {
    --primary: #15803d;
    --primary-glow: rgba(21, 128, 61, 0.4);
    --secondary: #b45309;
    --dark: #1e293b;
    --radius-lg: 2rem;
    --radius-md: 1rem;
    --radius-sm: 0.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.login-container {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../../logo/cor.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.login-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3.5rem 3rem;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(21, 128, 61, 0.15);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h2 {
    font-size: 2rem;
    color: var(--primary) !important;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.login-header p {
    color: #64748b;
    font-size: 1rem;
}

.error-message {
    background: #fee2e2;
    color: #b91c1c;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    border-left: 4px solid #ef4444;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary) !important;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.login-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary) !important;
    color: white !important;
    border: 2px solid #166534 !important;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(21, 128, 61, 0.2);
    margin-top: 1rem;
}

.login-button:hover {
    background: #166534;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(21, 128, 61, 0.2);
}

.login-button:active {
    transform: translateY(0);
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .login-card {
        padding: 2rem 1.5rem;
    }

    .login-header h2 {
        font-size: 1.75rem;
    }
}