﻿/* ==========================================================================
   LIVE HUB - AUTH / REGISTER / LOGIN DEDICATED STYLESHEET
   ========================================================================== */

.auth-bg {
    min-height: 100vh;
    background: linear-gradient(180deg, #fff 0%, #f4f4f6 100%);
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-content {
    width: 100%;
    max-width: 400px;
}

.auth-logo {
    font-size: 28px;
    font-weight: 900;
    color: #ef0033;
    text-align: center;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.auth-logo b { color: #111; }

.subtitle {
    text-align: center;
    color: #7d808a;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.4;
}

.form-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px 20px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.06);
    border: 1px solid #eceef3;
}

.form-card h1 {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin: 0 0 4px 0;
}

.form-card p {
    font-size: 13px;
    color: #7d808a;
    margin: 0 0 20px 0;
}

.form-card .field {
    margin-bottom: 16px;
}

.form-card .field label {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.form-card .input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid #e0e2e8;
    background: #fcfcfd;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.form-card .input:focus {
    border-color: #ef0033;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(239,0,51,0.1);
}

.link-red {
    color: #ef0033;
    font-weight: 700;
    text-decoration: none;
}