.login-container {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    position: relative;
    display: flex;
    background-color: #1A1A1A;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

.login-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.login-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to right,
        rgba(13, 13, 13, 0.95) 0%,
        rgba(26, 26, 26, 0.80) 50%,
        rgba(26, 26, 26, 0.55) 100%
    );
}

.login-strip-navy {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--enaex-rojo);
    z-index: 5;
}

.login-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.4), transparent);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

@media (min-width: 640px) {
    .login-topbar { padding: 16px 32px; }
}

@media (min-width: 1024px) {
    .login-topbar { padding: 16px 48px; }
}

.login-topbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.login-topbar-logo {
    background: #fff;
    padding: 6px 8px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.login-topbar-logo img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 640px) {
    .login-topbar-logo img { height: 28px; }
}

.login-topbar-text {
    display: none;
    flex-direction: column;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    line-height: 1;
}

@media (min-width: 640px) {
    .login-topbar-text { display: flex; }
}

.login-topbar-company {
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    line-height: 1;
}

.login-topbar-division {
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin: 4px 0 0 0;
    line-height: 1;
    font-weight: 400;
}

.login-topbar-status {
    display: none;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
}

@media (min-width: 768px) {
    .login-topbar-status { display: flex; }
}

.login-topbar-app {
    color: rgba(255, 255, 255, 0.55);
}

.login-topbar-sep {
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0.25);
}

.login-topbar-net {
    display: inline-flex;
    align-items: center;
}

.login-topbar-net.is-online  { color: #34D399; }
.login-topbar-net.is-offline { color: #FBBF24; }

.login-topbar-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    margin-right: 6px;
    vertical-align: middle;
    animation: loginPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes loginPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.5; }
}

.login-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 96px 20px 80px;
    width: 100%;
}

@media (min-width: 640px) {
    .login-content { padding-left: 32px; padding-right: 32px; }
}

@media (min-width: 1024px) {
    .login-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 48px;
        padding-left: 64px;
        padding-right: 64px;
    }
}

.login-hero {
    display: none;
    max-width: 32rem;
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .login-hero {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
        max-width: 32rem;
    }
}

.login-hero-eyebrow {
    color: rgba(255, 255, 255, 0.62);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    margin: 0 0 26px 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.login-hero-eyebrow::before,
.login-hero-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: rgba(179, 5, 15, 0.55);
}

.login-hero-eyebrow em {
    font-style: normal;
    color: rgba(179, 5, 15, 0.85);
    font-size: 11px;
    line-height: 1;
}

.login-emblem {
    width: 280px;
    margin: 0 0 28px 0;
    display: flex;
    justify-content: center;
}

@media (min-width: 1280px) {
    .login-emblem { width: 320px; }
}

.login-emblem-shield {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.38));
}

.login-emblem-manifesto {
    margin: 0 0 24px 0;
    padding: 0;
    border: none;
    background: none;
    max-width: 26rem;
    position: relative;
    text-align: left;
}

.login-emblem-quote { display: none; }

.login-emblem-manifesto p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.65;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.005em;
}

.login-emblem-manifesto strong {
    color: #fff;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.015em;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.28);
}

.login-emblem-specs {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 14px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.login-emblem-specs > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    padding: 0 18px;
    position: relative;
}

.login-emblem-specs > div + div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: rgba(179, 5, 15, 0.42);
}

.login-emblem-specs dt {
    font-size: 7px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin: 0;
}

.login-emblem-specs dd {
    font-size: 11px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin: 6px 0 0 0;
    font-family: 'Source Serif 4', Georgia, serif;
}

.login-card-wrap {
    width: 100%;
    max-width: 340px;
    position: relative;
}

.login-card {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.login-card-strip {
    height: 2px;
    background: var(--enaex-rojo);
}

.login-card-body {
    padding: 28px;
}

.login-card-eyebrow {
    color: var(--enaex-rojo);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    line-height: 1;
}

.login-card-title {
    color: #fff;
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0 0 6px 0;
}

.login-card-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.625;
    margin: 0;
}

.login-card-divider {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    margin: 24px 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    line-height: 1;
}

.input-container {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.45);
    transition: color 150ms ease;
    pointer-events: none;
}

.input-container.focused .input-icon {
    color: var(--enaex-rojo);
}

.form-input {
    width: 100%;
    padding: 10px 12px 10px 32px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    outline: none;
    transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
    box-sizing: border-box;
}

.input-container.has-toggle .form-input {
    padding-right: 36px;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-input:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.input-container.focused .form-input,
.form-input:focus {
    border-color: var(--enaex-rojo);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 1px rgba(179, 5, 15, 0.3);
}

.form-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.input-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.45);
    transition: color 150ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-toggle:hover { color: #fff; }

.input-toggle svg {
    width: 14px;
    height: 14px;
}

.login-forgot {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: -2px;
}

.login-forgot-link {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    letter-spacing: 0.025em;
    transition: color 150ms ease;
    font-family: inherit;
}

.login-forgot-link:hover { color: var(--enaex-rojo); }

.login-forgot-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 3px;
    border-radius: 4px;
    color: #fff;
}

.submit-button {
    width: 100%;
    margin-top: 16px;
    background: var(--enaex-rojo);
    color: #fff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 10px 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 6px -1px rgba(179, 5, 15, 0.2),
                0 2px 4px -2px rgba(179, 5, 15, 0.2);
    transition: background-color 200ms ease, box-shadow 200ms ease, transform 100ms ease;
}

.submit-button:hover:not(:disabled) {
    background: #9A0410;
    box-shadow: 0 10px 15px -3px rgba(179, 5, 15, 0.3),
                0 4px 6px -4px rgba(179, 5, 15, 0.3);
}

.submit-button:active:not(:disabled) {
    transform: scale(0.98);
}

.submit-button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.login-ms-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 18px;
    background: #fff;
    color: #1b1b1b;
    border: 1px solid #d6d9dc;
    border-radius: 12px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background-color 150ms ease, border-color 150ms ease, transform 100ms ease;
}

.login-ms-button:hover:not(:disabled) {
    background: #f3f4f6;
    border-color: #b9bec3;
}

.login-ms-button:active:not(:disabled) {
    transform: scale(0.985);
}

.login-ms-button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.login-ms-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.login-ms-logo {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
}

.login-separador {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0 4px;
}

.login-separador::before,
.login-separador::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.auth-splash {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: #ffffff;
    padding: 24px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.auth-splash__logo {
    width: 158px;
    max-width: 56vw;
    height: auto;
}

.auth-splash__spinner {
    width: 34px;
    height: 34px;
    border: 3px solid #f1e0e1;
    border-top-color: #B3050F;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

.auth-splash__texto {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 600;
    margin: 1.5rem 0 0;
    text-align: center;
}

.auth-splash__error {
    font-size: 1.05rem;
    font-weight: 600;
    color: #202427;
    margin: 0 0 10px;
    text-align: center;
}

.auth-splash__detalle {
    max-width: 620px;
    margin: 0 auto 22px;
    font-size: 12.5px;
    line-height: 1.55;
    color: #6b7280;
    text-align: center;
    word-break: break-word;
}

.auth-splash__volver {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 11px 24px;
    background: var(--enaex-rojo);
    color: #fff;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 150ms ease;
}

.auth-splash__volver:hover {
    background: #9A0410;
}

.login-separador span {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    white-space: nowrap;
}

.arrow-icon {
    width: 12px;
    height: 12px;
}

.spinner {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.login-card-foot {
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-align: center;
    margin: 16px 0 0 0;
    font-weight: 500;
}

.login-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

@media (min-width: 640px) {
    .login-footer {
        flex-direction: row;
        padding: 16px 32px;
    }
}

@media (min-width: 1024px) {
    .login-footer { padding: 16px 48px; }
}

.login-footer p { margin: 0; }

.login-footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-footer-links span {
    cursor: default;
    transition: color 150ms ease;
}

.login-footer-links span:hover { color: #fff; }

.toast {
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    padding: 12px 20px;
    border-radius: 10px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    animation: toastIn 0.25s ease-out;
    max-width: calc(100vw - 2rem);
}

.toast.success { background: #10B981; }
.toast.error   { background: var(--enaex-rojo); }
.toast.warning { background: #F59E0B; }

@keyframes toastIn {
    from { opacity: 0; transform: translate(-50%, 12px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

.login-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: block;
}

.login-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.login-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(179, 5, 15, 0.10);
    filter: blur(120px);
    will-change: transform;
}

.login-orb-1 {
    width: 400px;
    height: 400px;
    top: 25%;
    left: 25%;
    animation: loginFloat 6s ease-in-out infinite;
}

.login-orb-2 {
    width: 250px;
    height: 250px;
    bottom: 33%;
    left: 33%;
    background: rgba(179, 5, 15, 0.15);
    filter: blur(100px);
    animation: loginFloat 6s ease-in-out 2s infinite;
}

@keyframes loginFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-20px) rotate(5deg); }
}

@media (prefers-reduced-motion: reduce) {
    .login-orb { animation: none; }
}

@media (max-width: 480px) {
    .form-input {
        font-size: 16px;
        padding: 12px 14px 12px 36px;
        border-radius: 10px;
    }

    .input-container.has-toggle .form-input {
        padding-right: 42px;
    }

    .login-form {
        padding: 1.25rem 1rem;
    }

    .toast {
        bottom: 1.25rem;
        padding: 10px 16px;
        font-size: 12.5px;
        max-width: calc(100vw - 1.5rem);
    }
}

.login-solicitud-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    padding: 16px;
}

.login-solicitud-card {
    width: 100%;
    max-width: 420px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    background: rgba(13, 13, 13, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.6);
    padding: 26px 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-solicitud-card h3 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.login-solicitud-card > p {
    margin: 0 0 4px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.55;
}

.login-solicitud-card .form-input {
    padding-left: 12px;
}

.login-solicitud-card select.form-input {
    cursor: pointer;
}

.login-solicitud-card select.form-input option {
    color: #f2f2f2;
    background: #1a1a1a;
}

.login-solicitud-card select.form-input option:checked {
    background: #2a2a2a;
}

.login-solicitud-fila {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 480px) {
    .login-solicitud-fila { grid-template-columns: 1fr; }
}

.login-solicitud-acciones {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.login-solicitud-acciones .submit-button {
    margin-top: 0;
    flex: 1;
}

.login-solicitud-cancelar {
    flex: 0 0 auto;
    padding: 0 18px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-family: inherit;
    font-size: 12px;
    cursor: pointer;
    transition: border-color 150ms ease, color 150ms ease;
}

.login-solicitud-cancelar:hover:not(:disabled) {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.login-solicitud-cancelar:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
    color: #fff;
}

@media (max-height: 780px) {
    .login-content { padding: 72px 20px 60px; gap: 24px; }
    .login-emblem { width: 220px; margin-bottom: 16px; }
    .login-emblem-manifesto { margin-bottom: 12px; }
    .login-emblem-specs { padding: 10px 16px; }
    .login-card-body { padding: 22px 24px; }
    .login-card-divider { margin: 16px 0; }
}

@media (max-height: 660px) {
    .login-content { padding: 58px 20px 40px; gap: 14px; }
    .login-emblem { width: 170px; margin-bottom: 10px; }
    .login-emblem-manifesto p { font-size: 12.5px; }
    .login-card-body { padding: 18px 22px; }
    .login-card-divider { margin: 12px 0; }
    .login-form { gap: 12px; }
    .login-card-title { font-size: 1.2rem; }
    .login-footer { display: none; }
}

/* Primer ingreso por cuenta corporativa */

.registro-identidad {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
}

.registro-identidad-fila {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.registro-identidad-etiqueta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    flex: 0 0 auto;
}

.registro-identidad-valor {
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    text-align: right;
    word-break: break-word;
}

.registro-cancelar {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: color 150ms ease;
}

.registro-cancelar:hover:not(:disabled) {
    color: #fff;
}

.registro-cancelar:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
