/* ===== WRAPPER ===== */
.auth-container {
    display: flex;
    min-height: calc(100vh - 120px);
}

/* ===== LEFT SIDE ===== */
.auth-left {
    flex: 1;
    background: #f6f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.auth-left-content {
    max-width: 400px;
}

/* BRAND */
.auth-brand {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* HEADING */
.auth-heading {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* TEXT */
.auth-subtext {
    color: #6b7280;
    margin-bottom: 20px;
}

/* FEATURES */
.auth-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-pill {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
}

/* ===== RIGHT SIDE ===== */
.auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #fff;
}

/* CARD */
.auth-card {
    width: 100%;
    max-width: 420px;
}

/* TITLES */
.form-title {
    font-size: 24px;
    font-weight: 700;
}

.form-subtitle {
    color: #6b7280;
    margin-bottom: 20px;
}

/* INPUT GROUP */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    transition: 0.2s;
}

/* INPUT FOCUS */
.form-group input:focus {
    outline: none;
    border-color: #111827;
    box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.1);
}

/* BUTTON */
.submit-btn {
    width: 100%;
    background: #111827;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.2s;
}

.submit-btn:hover {
    background: #1f2937;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 18px 0;
}

.auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e5e7eb;
}

.auth-divider span {
    position: relative;
    z-index: 1;
    padding: 0 12px;
    background: #fff;
    color: #9ca3af;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.demo-btn {
    width: 100%;
    background: #f9fafb;
    color: #111827;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-weight: 600;
    transition: 0.2s;
}

.demo-btn:hover {
    background: #f3f4f6;
}

.demo-note {
    margin-top: 12px;
    color: #6b7280;
    font-size: 13px;
    text-align: center;
}

/* FOOTER */
.auth-footer {
    text-align: center;
    margin-top: 16px;
    color: #6b7280;
    font-size: 14px;
}

.auth-footer a {
    color: #111827;
    font-weight: 600;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .auth-left {
        display: none;
    }

    .auth-container {
        justify-content: center;
    }
}
