/* ===== Reset básico ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    background-image: url("./img/fundoazulescuro2.png");

}

/* ===== Containers de login e cadastro ===== */
.login-container {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    width: 320px;
    text-align: center;
    margin: 100px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.login-container img.modal-logo {
    width: 180px;
    margin-bottom: 15px;
}

.login-container .title {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.login-container .subtitle {
    font-size: 14px;
    margin-bottom: 15px;
    color: #bbb;
}

.login-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 6px;
    background: #222;
    color: #fff;
    outline: none;
}

.login-container button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: #28a745;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background 0.3s;
}

.login-container button:hover {
    background: #218838;
}

.links {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 10px;
}

.links a {
    color: #4da3ff;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

/* Botão Google */
.google-btn.googleLogin {
    background: #fa2512;
}

.google-btn:hover {
    background: #b81703;
}

/* Mensagens */
.msg {
    font-size: 14px;
    margin-bottom: 10px;
}

.msg.success {
    color: #4caf50;
}

.msg.error {
    color: #ff4d4d;
}

.msg.loading {
    color: #ffd633;
}

/* Ocultar elementos */
.hidden {
    display: none !important;
}

/* ===== Modal de Recuperação ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modalRecuperacao {
    background: #020000;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.modalRecuperacao img.modal-logo {
    width: 80px;
    margin-bottom: 10px;
}

.modalRecuperacao h3 {
    color: #fff;
    margin-bottom: 15px;
}

.modalRecuperacao input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    margin-bottom: 10px;
    background: #222;
    color: #fff;
    outline: none;
}

.modalRecuperacao .modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.modalRecuperacao .btn-enviar,
.modalRecuperacao .btn-cancelar {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.modalRecuperacao .btn-enviar {
    background: #28a745;
    color: #fff;
}

.modalRecuperacao .btn-cancelar {
    background: #dc3545;
    color: #fff;
}

.modalRecuperacao .msg {
    margin: 10px 0;
    font-size: 14px;
    color: #ff4d4d;
}

.modalRecuperacao .msg.success {
    color: #4caf50;
}
