@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500&family=Open+Sans:wght@300;400;500;600&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
}

#modal-cad-ciot-gratuito #liveAlertPlaceholderInicioLogin {
    position: static !important;
}

#modal-cad-ciot-gratuito #liveAlertPlaceholderInicioLogin .bd-callout {
    padding: 1rem !important;
}

#modal-cad-ciot-gratuito #div-inputs-login {
    padding-top: 0px !important;
}

article .grey .continue-button button {
    margin-top: 0 !important;
}

.dropdown ul li {
    cursor: pointer;
}

.box-container {
    width: 80%;
    height: 80vh;
    display: flex;
    box-shadow: 0px 1px 4px var(--gray-900-box-shadow);
}

#tamanhoModalLogin {
    display: grid;
    grid-template-columns: repeat(2, 50%)
}

.form-image {
    /* width: 50%; */
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../../global/util/img/icon.png');
    overflow: hidden;
    position: relative;
}

/* teste */

.scroll-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.content {
    display: flex;
    width: 200%;
    height: 100%;
    animation: scrollAnimation 10s linear infinite;
}

.image {
    width: 100%;
    height: 100%;
    background-image: url('../../global/util/img/road.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.truck {
    position: absolute;
}

.truck img {
    width: 40%;
    height: auto;
}

.truck-1 {
    left: 50%;
    bottom: 10px;
    z-index: 3;
}

.truck-2 {
    z-index: 1;
    left: 20px;
    bottom: 20px;
    animation: truckAnimation 5s linear infinite;
}

@keyframes scrollAnimation {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes truckAnimation {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(500%);
    }
}


/* .form-image img {
    animation: scrollAnimation 10s linear infinite;
} */

/* 
.form-image img {
    width: 100%;
} */

.form {
    /* width: 50%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    padding: 3rem;
}

.form-header {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
}

.login-button {
    display: flex;
    align-items: center;
}

.login-button button {
    border: none;
    background-color: #6c63ff;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.login-button button a {
    text-decoration: none;
    font-weight: 500;
    color: var(--white);
}

.form-header h1::after {
    content: '';
    display: block;
    width: 5rem;
    height: 0.3rem;
    background-color: var(--blue-bold-600);
    margin: 0 auto;
    position: absolute;
    border-radius: 10px;
}

.input-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 0;
}

.input-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.1rem;
}

.input-box input {
    margin: 0.6rem 0;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 10px;
    box-shadow: 1px 1px 6px var(--black);
    font-size: 0.8rem;
}

.input-box input:hover {
    background-color: #eeeeee75;
}

.input-box label,
.gender-title h6 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--black);
}

.input-box input::placeholder {
    color: var(--black);
}

.gender-group {
    display: flex;
    justify-content: space-between;
    margin-top: 0.62rem;
    padding: 0 .5rem;
}

.gender-input {
    display: flex;
    align-items: center;
}

.gender-input input {
    margin-right: 0.35rem;
}

.gender-input label {
    font-size: 0.81rem;
    font-weight: 600;
    color: var(--black);
}

.continue-button button {
    width: 100%;
    margin-top: 2.5rem;
    border: none;
    background-color: #6c63ff;
    padding: 0.62rem;
    border-radius: 5px;
    cursor: pointer;
}

.continue-button button a {
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--white);
}

#esqueciSenha {
    cursor: pointer;
}

.bd-callout i {
    font-size: 30px;
}

#div-infos-contagem-regressiva i {
    font-size: 30px;
    color: #fa7d28;
}

#form-envia-codigo div {
    padding: 10px 0 !important;
}

.progress {
    height: 8px !important;
}

.senhaForca {
    padding-top: 15px;
}

.password-alert {
    font-size: 11px;
}

#div-inputs-cod input {
    width: 80%;
}

.wrong .bi-check {
    display: none;
}

.good .bi-x {
    display: none;
}

#password-invalid {
    color: var(--bs-danger);
    font-size: 14px;
    padding-left: 4px;
}

.password-alert {
    width: 90%;
}

@media screen and (max-width: 1199px) {
    #tamanhoModalLogin {
        display: grid;
        grid-template-columns: 100%
    }

    .form-image {
        display: none;
    }

    .box-container {
        width: 50%;
    }

    .form {
        width: 100%;
    }
}

#div-inputs-login img {
    width: 180px;
}

@media screen and (max-width: 1064px) {
    .box-container {
        width: 90%;
        height: auto;
    }

    .gender-inputs {
        margin-top: 2rem;
    }

    .gender-group {
        flex-direction: column;
    }

    .gender-title h6 {
        margin: 0;
    }

    .gender-input {
        margin-top: 0.5rem;
    }
}

.container-logo-aproms img {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -30%);
    width: 220px;
    height: auto;
    /* animation: logoAnimation 5s infinite; */
}

@keyframes logoAnimation {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.1;
    }

    100% {
        scale: 1;
    }
}