/* ======================================
   FUNDO
====================================== */
.bg-login {
    background: linear-gradient(135deg, #2f5bea, #3b82f6);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Segoe UI", sans-serif;
}

/* ======================================
   CARD
====================================== */
.auth-card {
    width: 100%;
    max-width: 380px;
    padding: 32px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
    text-align: center;
}

/* ======================================
   CABEÇALHO
====================================== */
.auth-logo {
      width: 100px;
    height: auto;
    margin-bottom: 0px;
}

.auth-header h5 {
    margin-bottom: 8px;
    color: #2f5bea;
    font-weight: 700;
}

.auth-header p {
    margin-bottom: 20px;
    color: #666;
    font-size: 13px;
}

/* ======================================
   INPUTS
====================================== */
.auth-input {
    margin-bottom: 15px;
}

.auth-input .form-control {
    height: 44px;
    border-left: 0;
}

.auth-input .input-group-text {
    background: #fff;
    border-right: 0;
}

.form-control:focus {
    border-color: #417bf8;
    box-shadow: 0 0 0 .15rem rgba(65, 123, 248, .20);
}

/* ======================================
   BOTÃO MOSTRAR SENHA
====================================== */
#mostrarSenha {
    background: #fff;
    cursor: pointer;
    transition: background .2s;
}

#mostrarSenha:hover {
    background: #f5f7fb;
}

#mostrarSenha i {
    color: #2e62f7;
    font-size: 18px;
}

/* ======================================
   MENSAGEM DE ERRO
====================================== */
#erro-email {
    min-height: 22px;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* ======================================
   BOTÕES
====================================== */
.btn-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

/* Entrar */
.btn-cadastra {
    width: 100%;
    height: 48px;
    background: #417bf8;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
}

.btn-cadastra:hover:not(:disabled) {
    background: #2e62f7;
}

.btn-cadastra:active:not(:disabled) {
    transform: scale(.98);
}

.btn-cadastra:disabled {
    opacity: .75;
    cursor: not-allowed;
}

/* Visitar Loja */
.btn-visitar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background: #fff;
    color: #417bf8;
    border: 3px solid #417bf8;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.btn-visitar:hover {
    background: #417bf8;
    color: #fff !important;
}

/* ======================================
   LINKS
====================================== */
.auth-links {
    margin-top: 18px;
    font-size: 13px;
}

.auth-links p {
    margin-bottom: 8px;
}

.auth-links a {
    font-weight: 600;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* ======================================
   LOGO RESPONSIVA
====================================== */
#logo_marca_cel {
    width: 120px;
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

/* ======================================
   RESPONSIVIDADE
====================================== */
@media (max-width: 480px) {

    .auth-card {
        margin: 20px;
        padding: 24px;
    }

    .btn-cadastra,
    .btn-visitar {
        font-size: 17px;
    }

}