/* ============================================================
   login.css — Tela de login · Clean redesign
   Lareira Tangará da Serra · MT
   ============================================================ */

body {
    font-family: 'Poppins', sans-serif;
    background: #F5F2EE;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
}

.login-box {
    background: #fff;
    border-radius: 14px;
    padding: 44px 40px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #EAE6E1;
}

.login-logo {
    text-align: center;
    margin-bottom: 36px;
}
.login-logo .icon {
    width: 48px;
    height: 48px;
    background: #C0392B;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.login-logo .icon i { color: #fff; font-size: 1.2rem; }
.login-logo h1 {
    
    font-size: 1.25rem;
    color: #1C1410;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.login-logo p {
    font-size: 0.78rem;
    color: #9B9189;
    margin-top: 3px;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1C1410;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 7px;
    display: block;
}
.form-control {
    border: 1px solid #EAE6E1;
    border-radius: 8px;
    padding: 11px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: #1C1410;
    background: #FAFAF8;
    width: 100%;
    transition: border-color 0.15s;
}
.form-control:focus {
    border-color: #9B9189;
    background: #fff;
    outline: none;
}

.mb-4 { margin-bottom: 16px; }

.btn-entrar {
    background: #1C1410;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.15s;
    margin-top: 8px;
}
.btn-entrar:hover { opacity: 0.82; }

.alert-erro {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 8px;
    padding: 11px 14px;
    color: #991B1B;
    font-size: 0.82rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 0.78rem;
    color: #9B9189;
    text-decoration: none;
    transition: color 0.15s;
}
.back-link:hover { color: #1C1410; }
