/* Authentication Styles - Extends existing sidebar.css design */

.login-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.login-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-weight: 300;
    font-size: 1.8rem;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    border: 1px solid #B9B9B9;
    padding: 12px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.login-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.login-btn:hover {
    opacity: 0.9;
}

.login-error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.remember-me input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    margin-bottom: 0;
    transform: scale(1.1);
}

.remember-me label {
    color: #666;
    cursor: pointer;
    user-select: none;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-container {
        padding: 10px;
    }
    
    .login-card {
        padding: 30px 20px;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
}
