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

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: "Inter", sans-serif;
    background: #06070b;
    color: white;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   PÁGINA
========================================= */

.login-page {
    position: relative;
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    overflow: hidden;
}

/* =========================================
   FUNDO
========================================= */

.background {
    position: fixed;
    inset: 0;

    background-image:
        url("https://app.grapesjs.com/api/assets/random-image?query=cinematic%20dark%20home%20theater%20neon&w=1600&h=900");

    background-size: cover;
    background-position: center;

    z-index: 0;
}

.background-overlay {
    position: fixed;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(6, 7, 11, 0.97) 0%,
            rgba(6, 7, 11, 0.90) 40%,
            rgba(6, 7, 11, 0.75) 100%
        );

    z-index: 1;
}

/* =========================================
   LOGO
========================================= */

.login-header {
    position: relative;
    z-index: 5;

    padding: 28px 5%;
}

.logo {
    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 30px;
    font-weight: 800;

    letter-spacing: -1px;
}

.logo span {
    color: #f43f5e;
}

/* =========================================
   CONTEÚDO
========================================= */

.login-container {
    position: relative;
    z-index: 5;

    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;
}

/* =========================================
   CARD
========================================= */

.login-card {
    width: 100%;
    max-width: 430px;

    padding: 38px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 28px;

    background: rgba(17, 24, 39, 0.68);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.03);
}

/* =========================================
   TÍTULO
========================================= */

.login-header-content {
    text-align: center;

    margin-bottom: 30px;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: #fda4af;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.2em;
}

.login-header-content h1 {
    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 28px;
    line-height: 1.2;

    font-weight: 800;

    margin-bottom: 10px;
}

.login-header-content p {
    color: #94a3b8;

    font-size: 14px;

    line-height: 1.5;
}

/* =========================================
   ERRO
========================================= */

.login-error {
    margin-bottom: 20px;

    padding: 13px 15px;

    border: 1px solid rgba(248, 113, 113, 0.25);

    border-radius: 12px;

    background: rgba(127, 29, 29, 0.25);

    color: #fca5a5;

    font-size: 13px;

    text-align: center;
}

/* =========================================
   INPUTS
========================================= */

.input-group {
    display: flex;
    flex-direction: column;

    gap: 8px;

    margin-bottom: 18px;
}

.input-group label {
    color: #e2e8f0;

    font-size: 14px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    height: 50px;

    padding: 0 16px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.05);

    color: white;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    outline: none;

    transition: 0.2s;
}

.input-group input::placeholder {
    color: #64748b;
}

.input-group input:hover {
    border-color: rgba(255, 255, 255, 0.20);
}

.input-group input:focus {
    border-color: #fb7185;

    box-shadow:
        0 0 0 3px rgba(251, 113, 133, 0.12);
}

/* =========================================
   BOTÃO
========================================= */

.login-button {
    width: 100%;
    height: 52px;

    border: none;

    border-radius: 999px;

    background: #e11d48;

    color: white;

    font-family: "Inter", sans-serif;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(136, 19, 55, 0.35);

    transition: 0.2s;
}

.login-button:hover {
    background: #f43f5e;

    transform: translateY(-1px);

    box-shadow:
        0 15px 35px rgba(136, 19, 55, 0.45);
}

.login-button:active {
    transform: translateY(0);
}

/* =========================================
   DIVISOR
========================================= */

.divider {
    display: flex;

    align-items: center;

    gap: 15px;

    margin: 25px 0;

    color: #64748b;

    font-size: 12px;
}

.divider::before,
.divider::after {
    content: "";

    flex: 1;

    height: 1px;

    background: rgba(255, 255, 255, 0.08);
}

/* =========================================
   CRIAR CONTA
========================================= */

.create-account {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 50px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 999px;

    color: white;

    font-size: 14px;
    font-weight: 600;

    transition: 0.2s;
}

.create-account:hover {
    background: rgba(255, 255, 255, 0.07);

    border-color: rgba(255, 255, 255, 0.25);
}

/* =========================================
   SEGURANÇA
========================================= */

.security-text {
    margin-top: 20px;

    text-align: center;

    color: #64748b;

    font-size: 11px;
}

/* =========================================
   FOOTER
========================================= */

.login-footer {
    position: relative;

    z-index: 5;

    padding: 20px;

    text-align: center;

    color: #475569;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    .login-header {
        padding: 22px 20px;
    }

    .logo {
        font-size: 25px;
    }

    .login-container {
        padding: 20px;
    }

    .login-card {
        padding: 28px 22px;

        border-radius: 22px;
    }

    .login-header-content h1 {
        font-size: 24px;
    }
}

/* =========================================================
   AVISO BRAVE
========================================================= */

.brave-info {
    display: block !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 18px auto !important;
    padding: 12px 15px !important;
    box-sizing: border-box !important;
    background: rgba(255,255,255,.045) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 8px !important;
    color: #94a3b8 !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
    text-align: left !important;
    box-shadow: 0 8px 25px rgba(0,0,0,.18) !important;
}
        margin-top: 15px;
        padding: 10px 12px;
        font-size: 11px;
    }

}
