/* =========================
   REGISTER / LOGIN HERO
========================= */

.login-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-hero__picture {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.login-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .85) 0%,
            rgba(0, 0, 0, .92) 100%);
}

/* =========================
   CONTENIDO CENTRADO
========================= */

.login-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* =========================
   CAJA
========================= */

.login-box {
    width: 100%;
    max-width: 440px;
    background: rgba(22, 22, 26, .9);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    padding: 45px 40px;
}

.login-title {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.login-title span {
    color: var(--red);
}

.login-subtitle {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 25px;
}

/* =========================
   FORM
========================= */

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: .5px;
}

.form-group input {
    padding: 12px;
    background: #0e0e10;
    border: 1px solid var(--line);
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: .2s ease;
}

.form-group input:focus {
    border-color: var(--red);
}

/* BOTÓN PRINCIPAL */
.login-btn {
    width: 100%;
    margin-top: 10px;
}

/* =========================
   DIVIDER
========================= */

.login-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
}

.login-divider::before,
.login-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: var(--line);
}

.login-divider::before {
    left: 0;
}

.login-divider::after {
    right: 0;
}

/* =========================
   SOCIAL
========================= */

.login-social {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.btn-social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--line);
    font-weight: 700;
    background: transparent;
    color: var(--text);
    padding: 12px;
    text-decoration: none;
    transition: .2s ease;
}

.btn-social:hover {
    border-color: var(--red);
    transform: translateY(-2px);
}

.icon {
    width: 18px;
    height: 18px;
}

/* =========================
   EXTRA
========================= */

.login-extra {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: var(--muted);
}

.login-extra a {
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
}