/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fundo geral */
body {
    display: flex;
    justify-content: center; /* mantém horizontal centrado */
    align-items: flex-start; /* começa do topo */
    padding-top: 40px;       /* ajusta a distância do topo */
    height: 100dvh;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #ffffff, #ececec);
    overflow: hidden;
}


html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    overscroll-behavior: none; /* trava o arrastar branco */
}


/* Container principal */
.container {
    background: #2A3B5D;
    padding: 35px;
    width: 340px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    text-align: center;
    animation: fadeIn 0.5s ease;
}

/* Título */
.h1L {
    margin-bottom: 20px;
    color: #fffdfd;
}

/* Inputs */
.input-field {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: 0.2s;
}

.input-field:focus {
    border-color: #ff7a18;
    outline: none;
    box-shadow: 0 0 0 2px rgba(185, 86, 15, 0.15);
}

/* Botão */
.btn-laranja {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    background: #EF7F1A;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s;
}

.btn-laranja:hover {
    background: #e56710;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(218, 0, 0, 0.15);
}

/* Animação suave */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */
@media (max-width: 400px) {
    .container {
        width: 90%;
        padding: 25px;
    }
}
.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px; /* ajusta para subir ou descer o topo */
}


/* topo laranja */
.topo {
    text-align: center;
    color: rgb(42, 59, 93);
    margin-bottom: 10px;
}

.logo-topo {
    width: 90px;
    margin-top: 1px;
}

