.focus\:outline-primary:focus {
    outline-color: #252F62;
}

.icono {
    font-size: 30px;
}

.flex-wrap {
    flex-wrap: wrap;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

@media (min-width: 1024px) {
    .lg\:order-1 {
        order: 1;
    }
    .lg\:order-2 {
        order: 2;
    }
    .lg\:justify-between {
        justify-content: space-between!important;
    }
}


/* Boton */

a {
    text-decoration: none;
    color: inherit;
}

.cta {
    position: relative;
    margin: auto;
    padding: 19px 22px;
    transition: all 0.2s ease;
    color: white;
}

.cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 28px;
    background: #2168ae;
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
}

.cta span {
    position: relative;
    font-size: 16px;
    line-height: 18px;
    font-weight: 900;
    vertical-align: middle;
}

.cta svg {
    position: relative;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #fff;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.cta:hover:before {
    width: 100%;
    background: #2168ae;
}

.cta:hover svg {
    transform: translateX(0);
}


/**/

.cta-back {
    position: relative;
    margin: auto;
    padding: 14px 22px;
    transition: all 0.2s ease;
    color: rgb(0, 0, 0);
    font-weight: 900;
}

.cta-back:before {
    content: "";
    position: absolute;
    top: 4px;
    right: 0;
    display: block;
    border-radius: 28px;
    background: #e7eef6;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    z-index: -1;
}

.cta-back span {
    position: relative;
    font-size: 16px;
    line-height: 18px;
    vertical-align: middle;
}

.cta-back svg {
    position: relative;
    margin-right: 0;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #000000;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.cta-back:hover:before {
    width: 100%;
    background: #e7eef6;
}

.cta-back:hover svg {
    transform: translateX(-5px);
}


/*Etiquetas animadas*/

.form .form-input-content {
    position: relative;
}

label.especial {
    top: -11px !important;
    font-size: 10px !important;
    padding: 3px 15px;
    color: white;
    background-color: #2168ae;
    border-radius: 5px;
}

.form .form-input {
    font-size: 14px;
}

.form .form-input:focus~.form-label,
.form .form-input:not(:placeholder-shown)~.form-label,
.form .form-input.has-value~.form-label {
    top: -11px !important;
    font-size: 10px !important;
    color: white;
    padding: 3px 15px;
    background-color: #2168ae;
    border-radius: 5px;
}

.form input.form-input:read-only,
.form textarea.form-input:read-only,
:disabled {
    background-color: #eaeaea;
}

.form .form-label {
    font-size: 14px;
    position: absolute;
    pointer-events: none;
    left: 20px;
    top: 14px;
}


/*Campos contraseña*/

.password-toggle {
    position: relative;
}

.toggle-eye {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}


/*Colores de fondo*/

.fd-primary {
    background-color: #252F62;
}

.fd-secondary {
    background-color: #2168ae;
}

.focus\:border-secondary:focus {
    border-color: #2168ae;
}

.focus\:ring-secondary:focus {
    --tw-ring-color: #2168ae;
}

.fd-third {
    background-color: #e7eef6;
}

.stroke-primary {
    stroke: #252F62;
}


/* color de texto */

.txt-primary {
    color: #252F62;
}

.txt-secondary {
    color: #2168ae;
}

.ocultar {
    display: none;
}

.via-transparent {
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: rgb(93 149 238 / 50%), transparent var(--tw-gradient-via-position), var(--tw-gradient-to)!important;
}