.auth-page {
    position: relative;

    min-height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 120px 30px;

    background: #050505;
}

.auth-background {
    position: absolute;

    inset: 0;

    background: #050505;

    pointer-events: none;
}

.auth-container {
    position: relative;

    width: 100%;
    max-width: 1400px;

    display: grid;
    grid-template-columns: 1fr 520px;

    gap: 60px;

    align-items: center;
}

.auth-brand img {
    width: 110px;

    margin-bottom: 30px;

    filter:
        drop-shadow(
            0 0 40px rgba(139,92,246,0.45)
        );
}

.auth-brand h1 {
    font-size: 74px;

    line-height: 1;

    margin-bottom: 24px;
}

.auth-brand p {
    max-width: 520px;

    color: var(--muted);

    font-size: 20px;

    line-height: 1.8;
}

.auth-card {
    position: relative;

    padding: 40px;

    border-radius: 32px;

    background:
        rgba(10,10,10,0.78);

    backdrop-filter: blur(30px);

    border:
        1px solid rgba(255,255,255,0.06);

    box-shadow:
        0 20px 80px rgba(0,0,0,0.45);
}

.auth-card::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    box-shadow:
        inset 0 0 40px rgba(139,92,246,0.08);

    pointer-events: none;
}

.auth-card-header {
    margin-bottom: 32px;
}

.auth-card-header h2 {
    font-size: 34px;

    margin-bottom: 8px;
}

.auth-card-header p {
    color: var(--muted);
}

.auth-form {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.input-group {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.input-group label {
    color: #d4d4d4;

    font-size: 14px;
    font-weight: 600;
}

.input-group input {
    height: 58px;

    padding: 0 18px;

    border: none;

    border-radius: 18px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.06);

    color: white;

    font-size: 15px;

    outline: none;

    transition: 0.2s;
}

.input-group input:focus {
    border:
        1px solid rgba(139,92,246,0.5);

    box-shadow:
        0 0 0 4px rgba(139,92,246,0.12);
}

.auth-submit {
    height: 58px;

    border: none;

    border-radius: 18px;

    cursor: pointer;

    font-size: 15px;
    font-weight: 700;

    color: white;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #3b82f6
        );

    transition: 0.22s;

    margin-top: 10px;
}

.auth-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 40px rgba(139,92,246,0.35);
}

.auth-divider {
    position: relative;

    margin: 34px 0;

    text-align: center;
}

.auth-divider::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 100%;
    height: 1px;

    background:
        rgba(255,255,255,0.06);
}

.auth-divider span {
    position: relative;

    padding: 0 14px;

    background: #0b0b0b;

    color: #7d7d7d;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.social-logins {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 16px;
}

.social-btn {
    height: 56px;

    border: none;

    border-radius: 18px;

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.06);

    color: white;

    font-weight: 600;

    cursor: pointer;

    transition: 0.2s;
}

.social-btn:hover {
    background:
        rgba(255,255,255,0.07);

    transform: translateY(-2px);
}

.auth-footer {
    margin-top: 34px;

    display: flex;
    justify-content: center;

    gap: 8px;

    color: var(--muted);
}

.auth-footer a {
    color: white;

    text-decoration: none;

    font-weight: 600;
}

@media (max-width: 1100px) {

    .auth-container {
        grid-template-columns: 1fr;
    }

    .auth-left {
        display: none;
    }

}

@media (max-width: 600px) {

    .auth-page {
        padding: 110px 18px;
    }

    .auth-card {
        padding: 28px;
    }

    .social-logins {
        grid-template-columns: 1fr;
    }

    .auth-card-header h2 {
        font-size: 28px;
    }

}