/* === RESET BÁSICO === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* === BODY === */
.body_login {
    background: linear-gradient(135deg, #353131, #2a2b38);
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* === CONTAINER LOGIN === */
.login {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 380px;
    text-align: center;
    backdrop-filter: blur(8px);
}

/* === TÍTULO E TEXTO === */
.h2_login {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.login p {
    color: #ccc;
    margin-bottom: 25px;
}

/* === FLASH MESSAGES === */
.flash-messages {
    margin-bottom: 15px;
}

.flash-message {
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-top: 5px;
}

.flash-message.success {
    background: rgba(0, 255, 0, 0.15);
    color: #6cff6c;
}

.flash-message.error {
    background: rgba(255, 0, 0, 0.15);
    color: #ff6c6c;
}

/* === FORMULÁRIO === */
.label_login {
    display: block;
    text-align: left;
    font-size: 0.9rem;
    color: #ccc;
    margin: 10px 0 5px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.icon-login {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px 12px 12px 38px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
    transition: background 0.3s, box-shadow 0.3s;
}

input::placeholder {
    color: #bbb;
}

input:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

/* === BOTÃO ENTRAR === */
.bnt_entrar {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #007bff, #00bfff);
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
}

.bnt_entrar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

/* === LINK CRIAR CONTA === */
.btn-criar-conta {
    display: inline-block;
    padding-top: 10px;
    color: #00bfff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.btn-criar-conta:hover {
    color: #33ccff;
    text-decoration: underline;
}

/* === BOTÃO VOLTAR === */
.btn_voltar {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn_voltar:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* === CONTATO SUPORTE === */
.contato-suporte {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #ccc;
    text-align: center;
}

.contato-suporte a {
    color: #00bfff;
    text-decoration: none;
    transition: color 0.2s;
}

.contato-suporte a:hover {
    color: #33ccff;
}

/* === RESPONSIVIDADE === */
@media (max-width: 480px) {
    .login {
        padding: 30px 25px;
    }
}
