/* login.css - Estilos da página de login */
/* Movido de inline para arquivo externo para melhorar segurança CSP */

/* ================================
     FUNDO DO TOPO — (imagem como background)
   ================================ */
.login-header {
    width: 100%;
    height: 200px; /* você pode ajustar aqui */
    background-image: url("../img/FUNCHAL/TopoLogo.png");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

/* ================================
     CONTAINER PRINCIPAL DO LOGIN
   ================================ */
#main {
    position: relative;
    top: -140px; /* aproxima o formulário do topo */
    display: flex;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 380px;
}

/* ================================
     ESTILO DO FORM
   ================================ */
.smart-form header {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 15px 0;
}

/* CAPTCHA */
.g-recaptcha {
    transform: scale(0.9);
    transform-origin: center;
}

/* MODAL */
.custom-modal .modal-dialog {
    max-width: 600px;
}

.custom-modal .modal-content {
    border-radius: 8px;
}

.custom-modal .modal-header {
    background: linear-gradient(45deg, #f36279, #b41a83);
    color: white;
    padding: 12px 15px;
}

.custom-modal .modal-title {
    font-size: 16px;
}

.custom-modal .modal-body {
    font-size: 12px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 15px;
}

.custom-modal .modal-body p {
    margin-bottom: 10px;
}

.custom-modal .modal-body ul {
    padding-left: 18px;
    margin-bottom: 10px;
}

.custom-modal .modal-body li {
    margin-bottom: 5px;
}

.custom-modal .modal-footer {
    padding: 10px 15px;
}

.custom-modal .close {
    color: white;
    opacity: 1;
}
