/* === Auth Modal === */
.auth-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 4, 4, 0.78);
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: authModalFade 0.22s ease-out;
}

@keyframes authModalFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.auth-modal {
    background: #363636;
    border-radius: 26px;
    max-width: 1040px;
    width: 100%;
    max-height: 92vh;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(241, 146, 141, 0.14),
        0 0 60px rgba(241, 146, 141, 0.16),
        0 0 140px rgba(241, 146, 141, 0.10),
        0 30px 90px rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(241, 146, 141, 0.10);
    overflow: hidden;
    animation: authModalIn 0.28s cubic-bezier(.2,.8,.2,1);
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    /* Grosor base para el texto Inter del modal (se hereda en todo el modal) */
    font-weight: 200;
}

@keyframes authModalIn {
    from { transform: translateY(14px) scale(0.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.auth-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}
.auth-modal__close:hover { background: rgba(255, 255, 255, 0.14); }

.auth-modal__left {
    position: relative;
    padding: 42px 40px;
    background-color: #1c0c0c;
    background-image:
        linear-gradient(155deg, rgba(74, 30, 29, 0.55) 0%, rgba(28, 12, 12, 0.78) 100%),
        url('../images/Modal2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 560px;
    overflow: hidden;
}
/* Imagen según el modo: Modal1 en login, Modal2 en registro */
.auth-modal__left--login {
    background-image:
        linear-gradient(155deg, rgba(74, 30, 29, 0.55) 0%, rgba(28, 12, 12, 0.78) 100%),
        url('../images/Modal1.png');
}
.auth-modal__left--register {
    background-image:
        linear-gradient(155deg, rgba(74, 30, 29, 0.55) 0%, rgba(28, 12, 12, 0.78) 100%),
        url('../images/Modal2.png');
}
.auth-modal__left::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 85% at 100% 0%, rgba(241, 146, 141, 0.22) 0%, transparent 55%),
        radial-gradient(110% 90% at 0% 100%, rgba(155, 60, 60, 0.18) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.auth-modal__left > * {
    position: relative;
    z-index: 2;
}

.auth-modal__brand {
    display: inline-block;
    height: 32px;
    width: auto;
    object-fit: contain;
}

.auth-modal__brand-tagline {
    font-family: 'Playfair Display', ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-style: italic;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 18px;
    letter-spacing: 0.01em;
    font-weight: 300;
}

.auth-modal__headline {
    font-family: 'Playfair Display', ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 48px;
    line-height: 1.02;
    font-weight: 300;
    margin: 28px 0 16px;
    letter-spacing: -0.015em;
    color: #fff;
}
.auth-modal__sub {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.55;
    margin-bottom: 26px;
    max-width: 360px;
    font-weight: 200;
}

.auth-modal__stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.auth-modal__stat-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
}
.auth-modal__avatars {
    display: flex;
}
.auth-modal__avatars > .auth-modal__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: -8px;
    border: 2px solid #1a0a0a;
    background: linear-gradient(135deg, #F1928D 0%, #a04e4a 100%);
    background-size: cover;
    background-position: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
    flex-shrink: 0;
}
.auth-modal__avatars > .auth-modal__avatar:nth-child(2) { background-image: linear-gradient(135deg, #e8a8a3 0%, #8b4541 100%); }
.auth-modal__avatars > .auth-modal__avatar:nth-child(3) { background-image: linear-gradient(135deg, #d68580 0%, #6f3934 100%); }
.auth-modal__avatars > .auth-modal__avatar:nth-child(4) { background-image: linear-gradient(135deg, #c97570 0%, #5a2c28 100%); }
.auth-modal__stat-text {
    color: #fff;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}
.auth-modal__stat-text > span {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-size: 12.5px;
    margin-left: 0;
    letter-spacing: 0;
}
.auth-modal__stat-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(241, 146, 141, 0.18);
    color: #F1928D;
    flex-shrink: 0;
}

.auth-modal__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}
.auth-modal__chip {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.86);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.auth-modal__quote {
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}
.auth-modal__quote-text {
    font-style: italic;
    color: #fff;
    margin-bottom: 6px;
    font-family: 'Playfair Display', ui-serif, Georgia, serif;
    font-size: 14.5px;
    font-weight: 300;
}
.auth-modal__quote-author {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
}
.auth-modal__quote::before {
    content: '✦ ';
    color: #F1928D;
    margin-right: 4px;
}

.auth-modal__right {
    padding: 40px 52px 32px;
    color: #fff;
    overflow-y: auto;
    overflow-x: clip;
    max-height: 92vh;
    background:
        radial-gradient(120% 50% at 50% 0%, rgba(241, 146, 141, 0.08) 0%, transparent 55%),
        #363636;
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    display: flex;
    flex-direction: column;
    justify-content: safe center;
}
.auth-modal__right > div {
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
}
.auth-modal__right::-webkit-scrollbar { width: 6px; }
.auth-modal__right::-webkit-scrollbar-track { background: transparent; }
.auth-modal__right::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.12); border-radius: 3px; }

.auth-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(241, 146, 141, 0.14);
    color: #F1928D;
    font-size: 11px;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.35px;
    font-family: 'Inter', sans-serif;
}
.auth-modal__badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #F1928D;
    border-radius: 50%;
}
.auth-modal__title {
    font-family: 'Playfair Display', ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 32px;
    font-weight: 300;
    margin: 0 0 8px;
    line-height: 1.1;
    letter-spacing: -0.012em;
    color: #fff;
}
.auth-modal__subtitle {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 24px;
    font-weight: 200;
}

.auth-modal__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 11px;
    font-size: 14.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    border: 1px solid transparent;
}
.auth-modal__btn:disabled { opacity: 0.6; cursor: wait; }
.auth-modal__btn--google {
    background: #ffffff;
    color: #1a0f0f;
    border-color: #ffffff;
    font-weight: 500;
}
.auth-modal__btn--google:hover { background: #f5f5f5; }
.auth-modal__btn--email {
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
}
.auth-modal__btn--email:hover { background: rgba(255, 255, 255, 0.05); }
.auth-modal__btn--primary {
    background: #F1928D;
    color: #fff;
    border-color: #F1928D;
}
.auth-modal__btn--primary:hover:not(:disabled) {
    background: #e0807b;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(241, 146, 141, 0.32);
}

.auth-modal__divider {
    position: relative;
    text-align: center;
    margin: 22px 0;
}
.auth-modal__divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}
.auth-modal__divider span {
    position: relative;
    background: #363636;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
}

.auth-modal__switch {
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
.auth-modal__switch a {
    color: #F1928D !important;
    font-weight: 600 !important;
    cursor: pointer;
    text-decoration: none !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    font-family: 'Inter', sans-serif !important;
    vertical-align: baseline !important;
    display: inline !important;
    padding: 0 !important;
}
.auth-modal__switch a:hover { text-decoration: underline !important; }

.auth-modal__terms {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
.auth-modal__terms a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: underline !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    vertical-align: baseline !important;
}

.auth-modal__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.auth-modal__input {
    width: 100%;
    padding: 13px 16px;
    background: #3f3f3f;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: all 0.2s;
    box-sizing: border-box;
}
.auth-modal__input::placeholder { color: rgba(255, 255, 255, 0.4); }
.auth-modal__input:focus {
    outline: none;
    border-color: #F1928D;
    background: #474747;
    box-shadow: 0 0 0 3px rgba(241, 146, 141, 0.14);
}

.auth-modal__row {
    display: flex;
    gap: 10px;
}
.auth-modal__row > * { flex: 1; min-width: 0; }

.auth-modal__password {
    position: relative;
}
.auth-modal__password .auth-modal__input { padding-right: 42px; }
.auth-modal__password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-modal__password-toggle:hover { color: #fff; }

.auth-modal__error {
    font-size: 11px;
    color: #F1928D;
    margin: -4px 0 0 4px;
    font-family: 'Inter', sans-serif;
}

.auth-modal .auth-modal__reqs {
    list-style: none !important;
    margin: 0 !important;
    padding: 8px 12px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    line-height: 1.55 !important;
}
.auth-modal .auth-modal__reqs li {
    color: rgba(255, 255, 255, 0.55) !important;
    position: relative !important;
    padding-left: 16px !important;
    font-size: 11px !important;
    line-height: 1.55 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    margin: 0 !important;
    list-style: none !important;
}
.auth-modal .auth-modal__reqs li::before {
    content: '○';
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px !important;
    line-height: 1.55 !important;
}
.auth-modal .auth-modal__reqs li.is-ok {
    color: #F1928D !important;
    font-weight: 500 !important;
}
.auth-modal .auth-modal__reqs li.is-ok::before {
    content: '✓';
    color: #F1928D !important;
}

.auth-modal__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    cursor: pointer;
    margin: 4px 0;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
}
.auth-modal__check > span,
.auth-modal__check > span * {
    font-size: 13px !important;
    line-height: 1.5 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
}
.auth-modal__check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    flex-shrink: 0;
    margin: 1px 0 0 0;
    padding: 0;
    position: relative;
    transition: all 0.18s ease;
    box-shadow: none;
    outline: none;
}
.auth-modal__check input[type="checkbox"]:hover {
    border-color: rgba(241, 146, 141, 0.55);
    background: rgba(241, 146, 141, 0.06);
}
.auth-modal__check input[type="checkbox"]:focus-visible {
    box-shadow: 0 0 0 3px rgba(241, 146, 141, 0.22);
}
.auth-modal__check input[type="checkbox"]:checked {
    background: #F1928D;
    border-color: #F1928D;
}
.auth-modal__check input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 0;
    width: 4px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.auth-modal__check a {
    color: #F1928D !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    text-decoration: underline !important;
    vertical-align: baseline !important;
}

.auth-modal__back {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 14px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
}
.auth-modal__back:hover { color: #fff; }

.auth-modal__select {
    position: relative;
    flex: 1;
    min-width: 0;
}
.auth-modal__select-trigger {
    width: 100%;
    padding: 13px 16px;
    background: #3f3f3f;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    color: #fff;
    font-size: 14px !important;
    line-height: 1.4 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    box-sizing: border-box;
    transition: all 0.2s;
    margin: 0;
}
.auth-modal__select-value,
.auth-modal__select-value * {
    font-size: 14px !important;
    line-height: 1.4 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
}
.auth-modal__select-trigger:hover { border-color: rgba(241, 146, 141, 0.45); }
.auth-modal__select.is-open .auth-modal__select-trigger {
    border-color: #F1928D;
    background: #474747;
    box-shadow: 0 0 0 3px rgba(241, 146, 141, 0.14);
    outline: none;
}
.auth-modal__select-value.is-placeholder { color: rgba(255, 255, 255, 0.4); }
.auth-modal__select-arrow {
    width: 12px;
    height: 12px;
    color: rgba(255, 255, 255, 0.55);
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}
.auth-modal__select.is-open .auth-modal__select-arrow {
    transform: rotate(180deg);
    color: #F1928D;
}
.auth-modal__select-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #1c1010;
    border: 1px solid rgba(241, 146, 141, 0.25);
    border-radius: 12px;
    padding: 6px;
    margin: 0;
    list-style: none;
    z-index: 50;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(241, 146, 141, 0.08);
    max-height: 220px;
    overflow-y: auto;
    animation: authSelectIn 0.16s ease-out;
}
@keyframes authSelectIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}
.auth-modal__select-options::-webkit-scrollbar { width: 6px; }
.auth-modal__select-options::-webkit-scrollbar-thumb {
    background: rgba(241, 146, 141, 0.3);
    border-radius: 3px;
}
.auth-modal__select-options li {
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.14s ease;
    list-style: none;
    margin: 0;
}
.auth-modal__select-options li:hover {
    background: rgba(241, 146, 141, 0.14);
    color: #ffffff;
}
.auth-modal__select-options li.is-active {
    background: rgba(241, 146, 141, 0.22);
    color: #F1928D;
    font-weight: 500;
}

.auth-modal__datepicker {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: auto;
    background: #1c1010;
    border: 1px solid rgba(241, 146, 141, 0.25);
    border-radius: 12px;
    padding: 12px;
    z-index: 50;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(241, 146, 141, 0.08);
    width: 300px;
    max-width: calc(100vw - 60px);
    animation: authSelectIn 0.16s ease-out;
    font-family: 'Inter', sans-serif;
}
.auth-modal__datepicker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 6px;
}
.auth-modal__datepicker-header-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
    flex: 1;
    text-align: center;
}
.auth-modal__datepicker-header-btn:hover {
    background: rgba(241, 146, 141, 0.14);
    color: #F1928D;
}
.auth-modal__datepicker-nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: rgba(255, 255, 255, 0.85);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    flex-shrink: 0;
}
.auth-modal__datepicker-nav-btn:hover {
    background: rgba(241, 146, 141, 0.2);
    color: #F1928D;
}
.auth-modal__datepicker-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.auth-modal__datepicker-weekday {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
    padding: 6px 0;
}
.auth-modal__datepicker-day {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    height: 34px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.14s;
    padding: 0;
    line-height: 1;
}
.auth-modal__datepicker-day:hover:not(:disabled) {
    background: rgba(241, 146, 141, 0.16);
    color: #ffffff;
}
.auth-modal__datepicker-day.is-other-month {
    color: rgba(255, 255, 255, 0.22);
}
.auth-modal__datepicker-day.is-today {
    color: #F1928D;
    font-weight: 600;
}
.auth-modal__datepicker-day.is-selected {
    background: #F1928D !important;
    color: #ffffff !important;
    font-weight: 600;
}
.auth-modal__datepicker-day.is-selected:hover {
    background: #e0807b !important;
}
.auth-modal__datepicker-day:disabled {
    color: rgba(255, 255, 255, 0.12);
    cursor: not-allowed;
}
.auth-modal__datepicker-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}
.auth-modal__datepicker-cell {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 6px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.14s;
}
.auth-modal__datepicker-cell:hover {
    background: rgba(241, 146, 141, 0.16);
    color: #fff;
}
.auth-modal__datepicker-cell.is-active {
    background: rgba(241, 146, 141, 0.24);
    color: #F1928D;
    font-weight: 500;
}
.auth-modal__datepicker-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.auth-modal__datepicker-footer button {
    background: transparent;
    border: none;
    color: #F1928D;
    font-family: 'Inter', sans-serif !important;
    font-size: 12.5px !important;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.14s;
}
.auth-modal__datepicker-footer button:hover {
    background: rgba(241, 146, 141, 0.14);
}

input[type="date"].auth-modal__input {
    color-scheme: dark;
    accent-color: #F1928D;
    font-size: 14px !important;
    line-height: 1.4 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    color: #fff;
}
input[type="date"].auth-modal__input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(58%) sepia(82%) saturate(310%) hue-rotate(317deg) brightness(96%) contrast(92%);
    opacity: 0.9;
    margin-left: 4px;
}
input[type="date"].auth-modal__input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}
input[type="date"].auth-modal__input::-webkit-datetime-edit-text,
input[type="date"].auth-modal__input::-webkit-datetime-edit-month-field,
input[type="date"].auth-modal__input::-webkit-datetime-edit-day-field,
input[type="date"].auth-modal__input::-webkit-datetime-edit-year-field {
    color: #fff;
    font-family: 'Inter', sans-serif;
}
input[type="date"].auth-modal__input::-webkit-datetime-edit-text {
    color: rgba(255, 255, 255, 0.6);
}
input[type="date"].auth-modal__input:invalid::-webkit-datetime-edit {
    color: rgba(255, 255, 255, 0.4);
}

.auth-modal input:-webkit-autofill,
.auth-modal input:-webkit-autofill:hover,
.auth-modal input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px #363636 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

[v-cloak] { display: none !important; }

.swal2-popup.swal2-toast {
    align-items: center !important;
}
.swal2-popup.swal2-toast .swal2-icon {
    align-self: center !important;
    margin: 0 10px 0 0 !important;
}
.swal2-popup.swal2-toast .swal2-title {
    margin: 0 !important;
}

@media (max-width: 699px) {
    .auth-modal {
        grid-template-columns: 1fr;
        max-height: 96vh;
    }
    .auth-modal__left { display: none; }
    .auth-modal__right { padding: 52px 26px 28px; max-height: 96vh; }
    .auth-modal__title {
        font-size: 28px;
        text-align: center;
    }
    .auth-modal__subtitle { text-align: center; }
    .auth-modal__badge {
        display: flex;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}
