/* login.css - Estilos da tela de Login */

body {
    background: linear-gradient(135deg, #198754 0%, #0d6efd 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    margin: 0;
}

.card-login {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    width: 320px;
    padding: 30px;
    text-align: center;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box; /* Garante que padding não estoure a largura */
}

.btn-blue {
    background-color: #003399;
    color: white;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-blue:hover {
    background-color: #002266;
}

.forgot-link {
    display: block;
    text-align: right;
    font-size: 11px;
    color: #003399;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Utilitários de Texto */
.text-label {
    text-align: left; 
    margin-bottom: 5px; 
    font-weight: bold; 
    font-size: 11px; 
    color: #666;
}

.footer-text {
    margin-top: 25px; 
    font-size: 12px;
}

.copyright-text {
    margin-top: 30px; 
    border-top: 1px solid #eee; 
    padding-top: 15px; 
    font-size: 10px; 
    color: #999;
}