body {
    height: 100vh;
}

.btn-primary {
    border-radius: 8px;
    background: var(--Blue-Ribbon-400, #50AFFF);
    color: #FFF !important;
    /* Body/Bold */
    font-family: Carlito;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
    border: none;
    min-height: 48px;
      padding: 12px 24px;
}

.btn-primary:hover {
    border-radius: 8px;
    background: var(--Blue-Ribbon-400, #50AFFF);
    transition: background 0.3s ease;
    /* animation douce */
}

.auth .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.auth .text img {
    height: 25px;
    object-fit: contain;
}

.auth .text h1 {
    color: var(--Blue-Ribbon-700, #0A55EB);
    /* H2/Bold */
    font-family: Carlito;
    font-size: 49px;
    font-style: normal;
    font-weight: 700;
    line-height: 58.8px;
    /* 120% */
}

.auth .text .input-group {
    border-radius: 10px;
    border: 0.5px solid var(--Blue-Ribbon-950, #11275A);
    background: #FFF;
}

.auth .text .input-group .input-group-text {
    border: none;
    border-radius: 0px 0px 0px 0px;
    background-color: transparent;
    min-height: 48px;
}

.auth .text .input-group .form-control {
    border: none;
    border-radius: 0px 0px 0px 0px;
    background-color: transparent;
    color: var(--French-Gray-600, #92909B);

    /* Subtitle/Regular */
    font-family: Carlito;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    box-shadow: none;
}

.auth .text .input-group .form-control::placeholder {
    color: #c7c7c7;
}

.auth .text a {
    color: var(--Blue-Ribbon-600, #0D6AFF);
    text-align: center;
    /* Body/Bold */
    font-family: Carlito;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 33px;
    /* 165% */
    text-decoration: none;
}

.auth .text .form-check input {
    border-radius: 4px;
    border: 0.75px solid var(--Blue-Ribbon-500, #288CFF);
    width: 20px;
    height: 20px;
    box-shadow: none;
}

.auth .text .form-check label,
.auth .text p {
    color: var(--French-Gray-800, #67666D);
    text-align: left;

    /* Body/Regular */
    font-family: Carlito;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
    /* 165% */
}

.auth .text span {
    color: var(--Blue-Ribbon-900, #133E95);
    text-align: center;

    /* Headline/Bold */
    font-family: Carlito;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    /* 120% */
}

.auth .text .flex-grow-1 {
    border-color: var(--Blue-Ribbon-900, #133E95);
}

.auth .images {
    border-radius: 40px 0px 0px 40px;
    background: var(--Blue-Ribbon-50, #EDF7FF);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth .images img {
    width: 100%;
    max-width: 456px;
    height: 100%;
    max-height: 444px;
    flex-shrink: 0;
    object-fit: contain;
}

@media(max-width:992px) {
    .auth .text h1 {
        font-size: 35px;
    }

    .btn-primary {
        font-size: 20px;
    }

    .auth .text a,
    .auth .text p,
    .auth .form-control,
    .auth .btn-primary,
    .auth .text span,
    .auth .text .form-check label {
        font-size: 18px !important;
    }

    .auth .images img {
        max-width: 456px;
        max-height: 444px;
    }
}

@media(max-width:768px) {
    .auth .images {
        display: none;
    }

    .btn-primary {
        font-size: 18px;
    }

    .auth .text h1 {
        font-size: 30px;
    }

    .auth .text a,
    .auth .text p,
    .auth .form-control,
    .auth .btn-primary,
    .auth .text span,
    .auth .text .form-check label {
        font-size: 15px !important;
    }
}

@media(max-width:570px) {
    .btn-primary {
        font-size: 14px;
    }

    .auth .text h1 {
        font-size: 25px;
    }

    .auth .text a,
    .auth .text p,
    .auth .form-control,
    .auth .btn-primary,
    .auth .text span,
    .auth .text .form-check label {
        font-size: 14px !important;
    }
}