/* static/css/login.css */


.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.auth-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.auth-box h2 { margin-bottom: 10px; color: #2c3e50; font-size: 24px; }
.auth-subtitle { color: #7f8c8d; font-size: 14px; margin-bottom: 30px; }

.form-group { text-align: left; margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #34495e; font-size: 14px; }
.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #dcdde1;
    border-radius: 8px;
    font-size: 16px;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.error-banner {
    background-color: #fdeaea;
    color: #d12e2e;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid #d12e2e;
}

/* Success message for Registration/Reset */
.success-banner {
    background-color: #e7f5ea;
    color: #007f2d;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid #007f2d;
}

.auth-footer-links {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-footer-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.auth-footer-links a:hover { text-decoration: underline; }

/* Mobile Optimizations */
@media (max-width: 768px) {
    .input-grid {
        grid-template-columns: 1fr !important; /* Stack inputs vertically */
    }
    
    .welcome-card {
        flex-direction: column; /* Profile picture on top of text */
        text-align: center;
    }

    .jobs-container, .dashboard-container {
        padding: 10px; /* Reduce padding so content doesn't get squeezed */
    }
    
    .btn-submit, .btn-primary {
        padding: 15px; /* Make buttons larger for easier tapping */
        font-size: 1.1rem;
    }
}
