/* ============================================================
   RCONECT WORLD — LOGIN (Supreme Glass Neon 2025)
   Desenvolvido por Djalma Junior
   Clean + Glass + Neon Purple
============================================================ */

/* Fonte */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===================== SEÇÃO ===================== */
.login-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #080b0f, #12121a);
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* ===================== BOX PRINCIPAL ===================== */
.login-box {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 35px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
    animation: fadeIn 0.8s ease-in-out;
}

/* ===================== TÍTULO ===================== */
.login-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #bb86fc;
    text-shadow: 0 0 10px rgba(187, 134, 252, 0.6);
}

/* ===================== FORMULÁRIO ===================== */
.login-box label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #d6b8ff;
    margin-bottom: 6px;
    display: block;
}

.login-box input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #7c3aed;
    background: #1b1b1f;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 18px;
    outline: none;
    transition: 0.2s;
}

.login-box input:focus {
    border-color: #bb86fc;
    box-shadow: 0 0 10px rgba(187, 134, 252, 0.4);
}

/* ===================== BOTÃO ===================== */
.btn-login {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #9d4bff;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.btn-login:hover {
    background: #bb86fc;
    box-shadow: 0 0 15px rgba(187,134,252,0.6);
}

/* ===================== MENSAGENS ===================== */
.msg-erro {
    background: #4a1010;
    color: #ffb6b6;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #772424;
}

.msg-sucesso {
    background: #0f3e16;
    color: #a8f5c8;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #27693d;
}

/* ===================== RODAPÉ DO FORM ===================== */
.login-footer {
    text-align: center;
    margin-top: 18px;
    font-size: 0.95rem;
}

.login-footer a {
    color: #bb86fc;
    font-weight: 600;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* ===================== ANIMAÇÃO ===================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 480px) {
    .login-box {
        padding: 30px 25px;
    }

    .login-title {
        font-size: 1.7rem;
    }
}
