/* Login Styles - Nova América Sistema de Contas */

.login-container {
    max-width: 450px;
    margin: 60px auto;
    padding: 40px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 8px;
}

.login-header p {
    color: #7f8c8d;
    font-size: 16px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #3498db;
}

.btn-login {
    width: 100%;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-login:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-1px);
}

.security-info {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.security-info h4 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 16px;
}

.security-info p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Dark Mode Support */
[data-theme="dark"] .login-header h1 {
    color: #ecf0f1;
}

[data-theme="dark"] .login-header p {
    color: #bdc3c7;
}

[data-theme="dark"] .form-group label {
    color: #ecf0f1;
}

[data-theme="dark"] .form-group input {
    background: #2d2d2d;
    border-color: #444;
    color: #ecf0f1;
}

[data-theme="dark"] .form-group input:focus {
    border-color: #3498db;
}

[data-theme="dark"] .form-group input::placeholder {
    color: #95a5a6;
}

[data-theme="dark"] .security-info {
    background: #2d2d2d;
    border-color: #444;
}

[data-theme="dark"] .security-info h4 {
    color: #ecf0f1;
}

[data-theme="dark"] .security-info p {
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-container {
        margin: 40px auto;
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .login-header h1 {
        font-size: 24px;
    }
    
    .login-header p {
        font-size: 15px;
    }
    
    .form-group input {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

@media (max-width: 480px) {
    .login-container {
        margin: 20px auto;
        padding: 20px 15px;
    }
    
    .login-header h1 {
        font-size: 22px;
    }
    
    .security-info {
        padding: 15px;
        margin-top: 20px;
    }
}
