/* ===========================================================
   AUTH PAGES REDESIGN
   Login / Registration / Forgot Password / Reset Password
   Artist / Agency / Vendor Registration (shared .artist-box family)
   =========================================================== */

/* ---------- Split-card layout: login, basic register, forgot/reset password ---------- */
.auth-section {
    padding: 70px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f4f1fb 0%, #eef1fa 55%, #fbf6e8 100%);
}

.auth-card {
    width: 100%;
    max-width: 980px;
    background: var(--wc);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(74, 29, 140, .28), 0 8px 20px rgba(0, 0, 0, .05);
    display: flex;
    align-items: stretch;
}

.auth-card--sm {
    max-width: 560px;
}

.auth-card__brand {
    position: relative;
    flex: 0 0 42%;
    padding: 48px 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--wc);
    background: linear-gradient(160deg, var(--sc) 0%, var(--sc2) 100%);
    overflow: hidden;
}

.auth-card__brand::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 115%, rgba(255, 230, 0, .28), transparent 55%),
                radial-gradient(circle at 110% -10%, rgba(255, 255, 255, .18), transparent 45%);
    pointer-events: none;
}

.auth-card__brand-logo {
    position: relative;
    z-index: 1;
}

.auth-card__brand-logo img {
    height: 40px;
}

.auth-card__brand-body {
    position: relative;
    z-index: 1;
}

.auth-card__brand-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 12px;
}

.auth-card__brand-text {
    font-size: 14.5px;
    line-height: 1.75;
    opacity: .92;
    margin: 0;
}

.auth-card__brand-foot {
    position: relative;
    z-index: 1;
    font-size: 13px;
    opacity: .8;
}

.auth-card__form {
    flex: 1 1 auto;
    padding: 48px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-card__form-inner {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.auth-title {
    font-size: 23px;
    font-weight: 700;
    color: #222;
    margin: 0 0 6px;
}

.auth-subtitle {
    font-size: 13.5px;
    color: #808080;
    margin: 0 0 26px;
}

.auth-card__form .alert {
    border-radius: 10px;
    font-size: 13px;
    padding: 10px 14px;
}

/* ---------- Fields ---------- */
.auth-field {
    margin-bottom: 18px;
}

.auth-field label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 7px;
}

.auth-field .input-group {
    border-radius: 12px;
    border: 1.5px solid #e7e4f0;
    background: #faf9fc;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.auth-field .input-group:focus-within {
    border-color: var(--sc2);
    background: var(--wc);
    box-shadow: 0 0 0 4px rgba(125, 66, 210, .12);
}

.auth-field .input-group-text {
    background: transparent;
    border: none;
    width: 44px;
    justify-content: center;
}

.auth-field .input-group-text img {
    width: 16px;
    height: auto;
    opacity: .55;
}

.auth-field .form-control {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    height: 46px !important;
    font-size: 14px;
    padding-left: 2px;
}

.auth-field.password-box .form-control {
    padding-right: 40px;
}

.auth-field .text-danger {
    font-size: 12px;
    margin-top: 6px;
}

.auth-links-row {
    display: flex;
    justify-content: flex-end;
    margin: -8px 0 22px;
}

.auth-links-row a {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--sc2);
}

.auth-links-row a:hover {
    color: var(--sc);
}

.auth-submit-btn {
    display: block;
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    color: var(--wc);
    background: linear-gradient(90deg, var(--sc), var(--sc2));
    box-shadow: 0 12px 22px -10px rgba(74, 29, 140, .55);
    transition: transform .2s, box-shadow .2s;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 26px -10px rgba(74, 29, 140, .65);
    color: var(--wc);
}

.auth-switch {
    text-align: center;
    margin-top: 22px;
    font-size: 13px;
    color: #737373;
}

.auth-switch a {
    color: var(--sc2);
    font-weight: 700;
}

.auth-switch a:hover {
    color: var(--sc);
}

/* RTL */
[dir="rtl"] .auth-card {
    flex-direction: row-reverse;
}

[dir="rtl"] .auth-links-row {
    justify-content: flex-start;
}

[dir="rtl"] .auth-field label {
    text-align: right;
}

[dir="rtl"] .auth-field.password-box .form-control {
    padding-right: 2px;
    padding-left: 40px;
}

@media (max-width: 860px) {
    .auth-section {
        padding: 30px 14px;
    }

    .auth-card,
    [dir="rtl"] .auth-card {
        flex-direction: column;
        border-radius: 18px;
    }

    .auth-card__brand {
        flex: none;
        padding: 30px 26px;
    }

    .auth-card__brand-title {
        font-size: 21px;
    }

    .auth-card__brand-foot {
        display: none;
    }

    .auth-card__form {
        padding: 30px 24px;
    }
}

/* ===========================================================
   Registration form pages: Artist / Agency / Vendor
   (shared .artist-registation / .artist-box / .artist-sub-box)
   =========================================================== */

.artist-registation {
    background: linear-gradient(180deg, #f6f4fb 0%, #edf0f7 100%);
    padding-bottom: 20px;
}

.artist-registation .section-title {
    color: var(--sc);
}

.artist-registation .section-title + span {
    display: block;
    width: 46px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--sc), var(--yc));
}

.artist-box {
    max-width: 980px;
}

.artist-sub-box {
    padding: 34px 36px;
    border-radius: 18px;
    border: 1px solid #f1eef9;
    box-shadow: 0 15px 35px -15px rgba(74, 29, 140, .18);
}

.artist-box label {
    font-size: 12.5px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.artist-box input:not([type="checkbox"]):not([type="radio"]),
.artist-box select,
.artist-box textarea {
    border: 1.5px solid #e7e4f0;
    background: #faf9fc;
    padding: 11px 14px;
    border-radius: 10px;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.artist-box input:not([type="checkbox"]):not([type="radio"]):focus,
.artist-box select:focus,
.artist-box textarea:focus {
    border-color: var(--sc2);
    background: var(--wc);
    box-shadow: 0 0 0 4px rgba(125, 66, 210, .12);
}

.details-form-head h6 {
    background: linear-gradient(90deg, var(--sc), var(--sc2));
    color: var(--wc);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
}

.details-form-head h6 span {
    color: var(--yc);
    font-weight: 600;
}

/* Talent category checkboxes -> chip toggles */
.radio {
    row-gap: 10px;
}

.radio>[class*="col-"] {
    position: relative;
    padding-top: 4px;
    padding-bottom: 4px;
}

.artist-box .radio input[type="checkbox"] {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100%;
    margin: 0 !important;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.radio>[class*="col-"] label {
    display: block;
    margin: 0;
    cursor: pointer;
    text-align: center;
    border: 1.5px solid #e7e4f0;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 12.5px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    background: #faf9fc;
    transition: background .18s, color .18s, border-color .18s, transform .18s;
}

.artist-box .radio input[type="checkbox"]:checked+label {
    background: linear-gradient(90deg, var(--sc), var(--sc2));
    border-color: transparent;
    color: var(--wc);
    transform: translateY(-1px);
}

.artist-box .radio input[type="checkbox"]:focus-visible+label {
    outline: 2px solid var(--sc2);
    outline-offset: 2px;
}

/* Gender radios: keep native circle style, just tidy alignment */
.radio input[type="radio"] {
    vertical-align: middle;
}

.radio label[for="Male"],
.radio label[for="Female"] {
    display: inline-block;
    vertical-align: middle;
    border: none;
    background: none;
    padding: 0;
    text-align: left;
    text-transform: none;
    font-weight: 500;
    cursor: pointer;
}

.submit-btn button {
    background: linear-gradient(90deg, var(--sc), var(--sc2));
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 14px 26px -12px rgba(74, 29, 140, .55);
    transition: transform .2s, box-shadow .2s;
}

.submit-btn button:hover {
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .artist-sub-box {
        padding: 22px 20px;
    }
}
