/* Register — prueba gratuita */

.gh-register-body {
    font-family: 'Figtree', sans-serif;
    background: #f4f6f8;
    margin: 0;
}

.gh-register-body .gh-nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

.gh-register-body h1,
.gh-register-body h2 {
    font-family: 'Figtree', sans-serif !important;
}

.gh-register-body p {
    font-family: 'Figtree', sans-serif;
    line-height: inherit;
}

.gh-register-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 5.6rem;
}

@media (min-width: 992px) {
    .gh-register-page {
        flex-direction: row;
        align-items: stretch;
    }
}

/* Banner móvil */
.gh-register-mobile-banner {
    margin: 0;
    background: linear-gradient(135deg, #0e2c40, #1a3d54);
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 1.35rem;
}

.gh-register-mobile-banner strong {
    color: #e8a0c8;
}

@media (min-width: 992px) {
    .gh-register-mobile-banner {
        display: none;
    }
}

/* Panel izquierdo */
.gh-register-visual {
    display: none;
}

@media (min-width: 992px) {
    .gh-register-visual {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 42%;
        min-height: calc(100vh - 5.6rem);
        overflow: hidden;
        background: #0e2c40;
    }
}

.gh-register-visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.gh-register-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        155deg,
        rgba(14, 44, 64, 0.95) 0%,
        rgba(14, 44, 64, 0.9) 50%,
        rgba(185, 78, 143, 0.4) 100%
    );
    z-index: 1;
}

.gh-register-visual-inner {
    position: relative;
    z-index: 2;
    padding: 2.5rem 3rem;
    max-width: 42rem;
    color: #fff;
}

.gh-register-visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(185, 78, 143, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    margin-bottom: 1.4rem;
}

.gh-register-visual-inner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin: 0 0 0.9rem;
}

.gh-register-visual-inner > p {
    font-size: 1.4rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.8rem;
}

.gh-register-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 1.2rem;
}

.gh-register-benefits li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
}

.gh-register-benefits li i {
    flex-shrink: 0;
    width: 1.7rem;
    height: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(185, 78, 143, 0.55);
    border-radius: 50%;
    font-size: 0.75rem;
}

/* Panel formulario */
.gh-register-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.5rem 2.5rem;
    background: #f4f6f8;
}

@media (min-width: 992px) {
    .gh-register-panel {
        width: 58%;
        padding: 2rem 3.5rem;
        overflow-y: auto;
        max-height: calc(100vh - 5.6rem);
    }
}

.gh-register-card {
    width: 100%;
    max-width: 46rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(14, 44, 64, 0.08);
    border: 1px solid #e8ecf0;
    overflow: hidden;
}

.gh-register-card::before {
    content: "";
    display: block;
    height: 4px;
    background: linear-gradient(90deg, #0e2c40, #b94e8f);
}

.gh-register-card-head {
    padding: 2rem 2.2rem 0;
}

.gh-register-card-head h1 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #0e2c40;
    letter-spacing: -0.02em;
    margin: 0 0 0.35rem;
}

.gh-register-card-head p {
    font-size: 1.35rem;
    color: #4a5568;
    margin: 0;
}

.gh-register-form {
    padding: 1.6rem 2.2rem 2rem;
}

.gh-register-grid {
    display: grid;
    gap: 0 1rem;
}

@media (min-width: 540px) {
    .gh-register-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gh-register-grid .gh-reg-full {
        grid-column: 1 / -1;
    }
}

.gh-reg-field {
    margin-bottom: 1rem;
}

.gh-reg-field label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e2933;
    margin-bottom: 0.3rem;
}

.gh-reg-field input:not([type="checkbox"]),
.gh-reg-field select {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dde3ea;
    border-radius: 6px;
    padding: 0.8rem 1rem;
    font-size: 1.35rem;
    font-family: 'Figtree', sans-serif;
    background: #fafbfc;
    color: #1e2933;
}

.gh-reg-field input:not([type="checkbox"]):focus,
.gh-reg-field select:focus {
    outline: none;
    border-color: #b94e8f;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(185, 78, 143, 0.12);
}

.gh-reg-field small {
    display: block;
    margin-top: 0.35rem;
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.35;
}

.gh-reg-phone {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.gh-reg-phone .gh-phone-code-wrap {
    flex: 0 0 168px;
    width: 168px;
    max-width: 42%;
}

.gh-reg-phone input {
    flex: 1 1 auto;
    min-width: 0;
}

.gh-register-body .gh-phone-code-wrap .select2-container {
    width: 100% !important;
}

.gh-register-body .gh-phone-code-wrap .select2-selection--single,
.gh-register-body .select2-container--default .select2-selection--single {
    height: 48px;
    border: 1px solid #dde3ea;
    border-radius: 6px;
    background: #fafbfc;
}

.gh-register-body .gh-phone-code-wrap .select2-selection__rendered,
.gh-register-body .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px;
    padding-left: 8px;
    font-size: 1.25rem;
    color: #1e2933;
}

.gh-register-body .gh-phone-code-wrap .select2-selection__arrow,
.gh-register-body .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
}

.gh-register-body .select2-dropdown {
    z-index: 400;
}

.gh-reg-field input::placeholder {
    color: #9ca3af;
}

.gh-reg-terms {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 0.4rem 0 1.2rem;
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.4;
    cursor: pointer;
}

.gh-reg-terms input[type="checkbox"] {
    width: 1.45rem;
    height: 1.45rem;
    margin-top: 0.1rem;
    accent-color: #b94e8f;
    cursor: pointer;
}

.gh-reg-terms a {
    color: #b94e8f;
    font-weight: 600;
    text-decoration: none;
}

.gh-reg-submit {
    width: 100%;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0.95rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
}

.gh-register-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem 1.2rem;
    margin-top: 1.3rem;
    padding-top: 1.2rem;
    border-top: 1px solid #e8ecf0;
}

.gh-register-trust span {
    font-size: 1.1rem;
    color: #646464;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.gh-register-trust span i {
    color: #b94e8f;
}

.gh-register-footer-links {
    text-align: center;
    margin: 0;
    padding: 1rem 2rem 1.4rem;
    font-size: 1.25rem;
    color: #646464;
    background: #f9fafb;
    border-top: 1px solid #e8ecf0;
}

.gh-register-footer-links a {
    color: #b94e8f;
    font-weight: 600;
    text-decoration: none;
}

#loader.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
}
