/* Auth Pages */
.auth-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #388e3c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.auth-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: white;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auth-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
}

.auth-logo {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 4px solid #ffd700;
}

.auth-header h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.auth-header p {
    color: #a5d6a7;
    font-size: 14px;
    font-weight: 500;
}

.auth-form {
    padding: 40px 32px;
}

.auth-form h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1b5e20;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2e7d32;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2e7d32;
    background: white;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

.form-hint {
    font-size: 13px;
    color: #757575;
    margin-top: 6px;
}

.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

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

.auth-link {
    text-align: center;
    margin-top: 28px;
    color: #616161;
    font-size: 15px;
}

.auth-link button {
    background: none;
    border: none;
    color: #2e7d32;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-link button:hover {
    color: #1b5e20;
    text-decoration: underline;
}

.info-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-left: 4px solid #ffd700;
    padding: 20px;
    border-radius: 12px;
    margin-top: 28px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.info-box p {
    font-size: 14px;
    color: #5d4e00;
    font-weight: 500;
    line-height: 1.6;
}
/* Inline styles extracted from login.html */

.info-box-login {
    margin-top: 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #2196f3;
}

.info-box-login p {
    color: #0d47a1;
}
.auth-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}