:root {
    --primary-color-01: #0072BB;
    --white-color-01: #FFFFFF;
    --primary-400: #2B73FF;
    --primary-color-02: #05629E;
    --natural-50: #F6F7F8;
    --white-color-02: #edeff0;
    --natural-600: #A1A8B6;
    --natural-900: #3C424D;
}

/* Contenedor principal */
.wrap {
    max-height: 1100px;
    min-height: 700px;
    height: 100vh;
    width: 100%;
    display: flex;
}

/* Contenedor formulario lado Derecho*/
.wrap-form {
    height: 100%;
    width: 100%;
    background-color: var(--white-color-01);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .wrap-form .logo-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: relative;
        bottom: 30px;
    }

    .wrap-form .wrap-nos a {
        font-size: 16px;
        text-decoration: none;
        position: relative;
        top: 30px;
        color: var(--natural-600)
    }

        .wrap-form .wrap-nos a:hover {
            color: var(--natural-900)
        }

.wrap-form-opcionAccount {
    display: flex;
    align-items: center;
}

    .wrap-form-opcionAccount a {
        border-radius: 8px;
        border: solid 1px var(--natural-600);
        color: var(--natural-900);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        font-size: 16px;
        margin: 9px;
        width: 165px;
        height: 50px;
        font-weight: 500;
    }

        .wrap-form-opcionAccount a:hover {
            background-color: var(--white-color-02);
        }

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 10px;
}

    .separator span {
        font-weight: 500;
        position: relative;
        font-size: 16px;
        color: var(--natural-900);
    }

    .separator::before,
    .separator::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid var(--natural-900);
        margin: 0 10px;
        width: 65px;
    }

.wrap-form form {
    position: relative;
    top: 20px;
}

.wrap-form .form-control {
    min-height: 40px !important;
    height: 50px;
    font-weight: 500;
    border-color: var(--natural-600);
    color: var(--natural-900) !important;
    border-radius: 5px;
    width: 350px;
    font-size: 16px;
}

.wrap-form .form-floating .form-label {
    font-weight: 400;
    padding: 12px;
    font-size: 16px;
    color: var(--natural-600) !important;
}

    .wrap-form .form-floating .form-label::after {
        font-weight: none;
        background-color: transparent !important;
    }

.wrap-form .form-floating .form-control:focus {
    box-shadow: #2B73FF;
}

.wrap-form form button {
    background: var(--primary-color-01);
    border: none;
    border-radius: 5px;
    color: var(--natural-50);
    font-size: 18px;
    font-weight: 500;
    width: 350px;
    height: 50px;
}

    .wrap-form form button:hover {
        background: var(--primary-color-02);
    }

.wrap-form-a .form-check-input {
    border-color: var(--natural-600);
    border-radius: 5px;
    font-weight: 500;
}

.wrap-form-a label {
    color: var(--natural-900);
    font-size: 16px;
}

.wrap-form-a,
.wrap-form-b-opc {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .wrap-form-a a,
    .wrap-form-b-opc a {
        font-size: 16px;
        text-decoration: none;
    }

.wrap-form-b {
    margin: 40px 0px;
}

.wrap-form-b-opc {
    margin: 10px 0px;
}

    .wrap-form-b-opc div {
        color: var(--natural-900);
        font-weight: 500;
        font-size: 16px;
    }

.wrap-img {
    position: relative;
    background-color: var(--primary-color-01);
    width: 60%;
}

    .wrap-img .logo-banner {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        border-radius: 100%;
    }

    .wrap-img .carousel {
        overflow: hidden;
        position: absolute;
        bottom: 0;
        left: 0;
        height: 100% !important;
        object-fit: cover;
        width: 100%;
        opacity: 40%;
    }

        .wrap-img .carousel .carousel-item img {
            height: 100% !important;
            object-fit: cover;
            width: 100%;
            opacity: 40%;
        }

@media (max-width: 900px) {
    .wrap {
        height: 600px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    /* Contenedor formulario lado Derecho*/
    .wrap-form {
        height: 100%;
        width: 100%;
        background-color: var(--white-color-01);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .wrap-img {
        display: none;
    }
}

.wrap-form .g-3 button {
    border-radius: 8px;
    background-color: white;
    border: solid 1px var(--natural-600);
    color: #343a40;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 16px;
    margin: 9px;
    width: 150px;
    height: 50px;
}

    .wrap-form .g-3 button:hover {
        background-color: var(--white-color-02);
    }