/**
 * File: /var/www/html/schedule_app/css/login.css
 * Description: Styling specific to the login page.
 */

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.login-box h1 {
    margin-bottom: 8px;
    color: #4a5568;
    font-size: 1.8rem;
}

.subtitle {
    color: #718096;
    margin-bottom: 30px;
    font-size: 1rem;
}

.input-group {
    margin-bottom: 20px;
    text-align: right;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.btn-primary:hover {
    background: #5a67d8;
}

.error-alert {
    background: #fed7d7;
    color: #9b2c2c;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    border: 1px solid #feb2b2;
}

.footer-links {
    margin-top: 25px;
    font-size: 0.9rem;
}

.footer-links a {
    color: #667eea;
    font-weight: 500;
}

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

.success-alert {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    border: 1px solid #c3e6cb;
}

/* End of file: /var/www/html/schedule_app/css/login.css */
