/* Custom Premium Auth Styles */
:root {
    --primary-color: #28a745;
    --primary-hover: #218838;
    --bg-image: url('../images/bg-auth.jpg');
    --bg-gradient: linear-gradient(rgba(245, 247, 250, 0.8), rgba(195, 207, 226, 0.8)), var(--bg-image);
    --card-bg: rgba(255, 255, 255, 0.95);
    --shadow: 0 10px 25px rgba(0,0,0,0.1);
}

body.auth-page {
    background: var(--bg-gradient) !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.auth-card {
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.auth-logo {
    margin-bottom: 30px;
}

.auth-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.auth-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.form-group label {
    font-weight: 600;
    color: #444;
    font-size: 13px;
    margin-bottom: 8px;
}

.form-control-premium {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    height: auto;
    transition: all 0.3s ease;
}

.form-control-premium:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.btn-premium {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-premium:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.auth-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.auth-link:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}

.footer-links {
    margin-top: 25px;
    text-align: center;
    font-size: 13px;
    color: #777;
}
