:root {
    --background-color: #f4f7f9;
    --dark-background: #222b3c;
    --text-color: #333;
    --card-background: #ffffff;
    --border-color: #dee2e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/*===============================
        ESTILO DO LOGIN
===============================*/
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--dark-background);
}

.login-box {
    background-color: var(--card-background);
    padding: 5px 40px 40px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 450px;
}

.login-logo {
    width: 150px;
    margin-bottom: 20px;
}

.login-box h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.login-box p {
    color: #6c757d;
    margin-bottom: 30px;
}

img {
    width: 250px;
}

/* ------ INPUTS ------ */

.email,
.senha {
    text-align: left;
    margin-bottom: 18px;
}

label {
    display: block;
    font-weight: 600;
    color: #1f2833;
    margin-bottom: 6px;
}

.login-box input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #cfd6e0;
    font-size: 15px;
    background-color: #f8fafc;
    outline: none;
    transition: 0.2s ease;
}

.login-box input::placeholder {
    color: #9aa3b1;
}

.login-box input:focus {
    border-color: #3498db;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

/* ------ BOTÃO ------ */
.login-button {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.login-button:hover {
    background-color: #2980b9;
}


/* MODAL de Alerta */
/* Fundo */
.alert-modal-wrapper {
    display: none;
    position: fixed;
    z-index: 2550;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    justify-content: center;
    align-items: center;
}

/* Caixa */
.alert-modal-box {
    background: #ffffff;
    padding: 22px 30px;
    border-radius: 12px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.25);
    animation: alertModalFadeIn 0.25s ease;
}

/* Botão fechar */
.alert-modal-ok-btn {
    margin-top: 15px;
    padding: 10px 25px;
    background-color: #007bff;
    border: none;
    color: white;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s ease;
}

.alert-modal-ok-btn:hover {
    background-color: #0056b3;
}

/* Animação */
@keyframes alertModalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}