/*(c) Haxter Corporation | All rights reserved.*/
:root {
    --hxlogin-text: #1f1f1f;
    --hxlogin-muted: #5f6368;
    --hxlogin-line: #d9dce3;
    --hxlogin-blue: #0067b8;
    --hxlogin-blue-hover: #005da6;
    --hxlogin-card: rgba(255, 255, 255, 0.94);
    --hxlogin-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
    --hxlogin-radius: 14px;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: #f6f8fc;
}

.hxlogin_page {
    min-height: calc(100vh - 74px);
    color: var(--hxlogin-text);
    font-family: "Segoe UI", "Elms Sans", Arial, sans-serif;
    background:
        radial-gradient(circle at 18% 76%, rgba(194, 232, 255, 0.72), transparent 24%),
        radial-gradient(circle at 78% 18%, rgba(239, 232, 255, 0.82), transparent 28%),
        radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.96), transparent 34%),
        linear-gradient(135deg, #eef6fb 0%, #fbf8ff 48%, #f8f9fb 100%);
    position: relative;
    overflow: hidden;
    padding: 82px 24px 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hxlogin_page::before,
.hxlogin_page::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(60, 132, 210, 0.14);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(2px);
}

.hxlogin_page::before {
    width: 680px;
    height: 360px;
    left: -120px;
    bottom: -90px;
    border-radius: 42px;
    transform: rotate(-22deg);
}

.hxlogin_page::after {
    width: 760px;
    height: 460px;
    right: -160px;
    top: -120px;
    border-radius: 46px;
    transform: rotate(-8deg);
}

.hxlogin_shell {
    position: relative;
    z-index: 2;
    width: min(470px, 100%);
}

.hxlogin_card {
    width: 100%;
    background: var(--hxlogin-card);
    border: 1px solid rgba(217, 220, 227, 0.95);
    border-radius: var(--hxlogin-radius);
    box-shadow: var(--hxlogin-shadow);
    padding: 36px 40px 34px;
    backdrop-filter: blur(22px);
}

.hxlogin_brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

.hxlogin_brand img {
    width: 280px;
    max-width: 92%;
    height: auto;
    display: block;
}

.hxlogin_title {
    margin: 0;
    color: #242424;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.02em;
}

.hxlogin_subtitle {
    margin: 14px auto 0;
    color: var(--hxlogin-muted);
    font-size: 15px;
    line-height: 1.45;
    text-align: center;
    max-width: 340px;
}

.hxlogin_form_group {
    margin-top: 18px;
}

.hxlogin_label {
    display: block;
    margin: 0 0 8px;
    color: #242424;
    font-size: 13px;
    font-weight: 600;
}

.hxlogin_input {
    width: 100%;
    height: 42px;
    border: 1px solid #b9bec8;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.9);
    color: #242424;
    padding: 0 12px;
    font-family: "Segoe UI", "Elms Sans", Arial, sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
    box-sizing: border-box;
}

.hxlogin_input::placeholder {
    color: #767b85;
}

.hxlogin_input:focus {
    border-color: var(--hxlogin-blue);
    box-shadow: 0 0 0 1px var(--hxlogin-blue);
    background: #ffffff;
}

.hxlogin_password_box {
    display: flex;
    align-items: center;
    border: 1px solid #b9bec8;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.hxlogin_password_box:focus-within {
    border-color: var(--hxlogin-blue);
    box-shadow: 0 0 0 1px var(--hxlogin-blue);
    background: #ffffff;
}

.hxlogin_password_box .hxlogin_input {
    border: 0;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
}

.hxlogin_toggle {
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--hxlogin-blue);
    padding: 0 12px;
    font-family: "Segoe UI", "Elms Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.hxlogin_options {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #4f4f4f;
    font-size: 13px;
    line-height: 1.4;
}

.hxlogin_checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.hxlogin_checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--hxlogin-blue);
}

.hxlogin_actions {
    margin-top: 28px;
}

.hxlogin_button {
    width: 100%;
    min-height: 42px;
    border-radius: 3px;
    border: 0;
    padding: 0 22px;
    font-family: "Segoe UI", "Elms Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    background: var(--hxlogin-blue);
    color: #ffffff;
}

.hxlogin_button:hover {
    background: var(--hxlogin-blue-hover);
}

.hxlogin_links {
    margin: 26px 0 0;
    display: grid;
    gap: 12px;
    text-align: center;
    color: #4f4f4f;
    font-size: 14px;
    line-height: 1.45;
}

.hxlogin_page a,
.hxlogin_page a:visited,
.hxlogin_page a:active {
    color: var(--hxlogin-blue);
    font-family: "Segoe UI", "Elms Sans", Arial, sans-serif;
    font-size: inherit;
    font-weight: 600;
    line-height: inherit;
    text-decoration: none;
    padding: 0;
    display: inline;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.hxlogin_page a:hover,
.hxlogin_page a:focus {
    color: var(--hxlogin-blue-hover);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hxlogin_identity_summary {
    margin: 34px auto 0;
    max-width: 620px;
    text-align: center;
    color: #1f1f1f;
}

.hxlogin_identity_summary h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.22;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hxlogin_identity_summary p {
    margin: 10px auto 0;
    max-width: 560px;
    color: var(--hxlogin-muted);
    font-size: 14px;
    line-height: 1.48;
}

.hxlogin_chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.hxlogin_chips span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border: 1px solid var(--hxlogin-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #1f1f1f;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hxlogin_global_endmark {
    margin: 36px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hxlogin_global_endmark img {
    width: min(420px, 72vw);
    height: auto;
    display: block;
    opacity: 0.88;
}

.hxlogin_footer {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    color: #4f4f4f;
    font-size: 12px;
}

.hxlogin_footer a,
.hxlogin_footer a:visited,
.hxlogin_footer a:active {
    color: #5f6368;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
}

.hxlogin_footer a:hover,
.hxlogin_footer a:focus {
    color: #1f1f1f;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 640px) {
    .hxlogin_page {
        min-height: calc(100vh - 64px);
        padding: 48px 18px 52px;
        align-items: flex-start;
    }

    .hxlogin_shell {
        width: 100%;
        min-height: calc(100vh - 120px);
        display: flex;
        flex-direction: column;
    }

    .hxlogin_card {
        padding: 30px 24px 28px;
    }

    .hxlogin_brand img {
        width: 250px;
        max-width: 92%;
    }

    .hxlogin_title {
        font-size: 25px;
    }

    .hxlogin_subtitle {
        font-size: 14px;
        margin-top: 10px;
    }

    .hxlogin_options {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .hxlogin_identity_summary {
        margin-top: auto;
        padding-top: 44px;
        max-width: 100%;
    }

    .hxlogin_identity_summary h2 {
        font-size: 21px;
        line-height: 1.2;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hxlogin_identity_summary p {
        max-width: 340px;
        font-size: 12.5px;
        line-height: 1.45;
        margin-top: 10px;
    }

    .hxlogin_chips {
        display: none;
    }

    .hxlogin_global_endmark {
        margin-top: 34px;
    }

    .hxlogin_global_endmark img {
        width: min(270px, 76vw);
        opacity: 0.9;
    }

    .hxlogin_footer {
        margin-top: 22px;
        gap: 16px;
        font-size: 11px;
    }

    .hxlogin_footer a,
    .hxlogin_footer a:visited,
    .hxlogin_footer a:active {
        font-size: 11px;
    }
}
.hxlogin_error {
    margin-top: 18px;
    padding: 12px 14px;
    border: 1px solid #f5c2c7;
    border-radius: 3px;
    background: #fff5f5;
    color: #842029;
    font-size: 13px;
    line-height: 1.45;
}

/* Service requesting indicator: HaxterSociety Music */
.hxfrom_logicon {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 18px 0 10px;
}

.hxfrom_logicon::before,
.hxfrom_logicon::after {
    content: "";
    height: 1px;
    flex: 1;
    max-width: 82px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(148, 163, 184, 0.45)
    );
}

.hxfrom_logicon::after {
    background: linear-gradient(
        90deg,
        rgba(148, 163, 184, 0.45),
        transparent
    );
}

.hxfrom_logicon img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    margin: 0 16px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(248, 250, 252, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.10),
        0 0 0 8px rgba(37, 99, 235, 0.035);
}

.hxfrom_service {
    width: 100%;
    display: block;
    text-align: center;
    margin: 6px auto 18px;
}

.hxfrom_service .hxfrom_logicon {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hxfrom_service {
    margin: 6px 0 18px;
    text-align: center;
}

.hxfrom_text {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.hxfrom_text strong {
    color: #0f172a;
    font-weight: 800;
}

/* HaxterSociety Music requested-service logo: perfect center */

.hxfrom_logicon {
    width: 100%;
    display: grid !important;
    place-items: center !important;
    margin: 18px auto 10px !important;
    padding: 0 !important;
    text-align: center !important;
}

/* Desactivar líneas laterales si estaban moviendo el centro visual */
.hxfrom_logicon::before,
.hxfrom_logicon::after {
    display: none !important;
    content: none !important;
}

.hxfrom_logicon img {
    display: block !important;
    width: 92px !important;
    height: 92px !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    padding: 10px !important;
    border-radius: 24px !important;
    background: rgba(248, 250, 252, 0.92) !important;
    border: 1px solid rgba(148, 163, 184, 0.24) !important;
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.10),
        0 0 0 8px rgba(37, 99, 235, 0.035) !important;
}
.hxfrom_logicon {
    width: 100%;
    display: grid;
    place-items: center;
    margin: 14px auto 8px;
}

.hxfrom_logicon img {
    display: block;
    width: 65%;
    max-width: 210px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}




