.form-select:disabled{
    background-color: var(--mute-info);
}
.form-control:disabled, .form-control[readonly]{
    background-color: var(--mute-info);
}
.form-control{
    color: var(--dark-color);
    background-color: var(--white-color);
}
.form-control-sm:focus{
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.2rem rgba(248,137,133,0.5214460784313726);
}
.form-select{
    color: var(--dark-color);
    background-color: var(--white-color);
}
.form-select:focus{
    border-color:var(--main-color);
    box-shadow: 0 0 0 0.25rem rgba(255,8,68,.25);
}
.form-control:focus{
    border-color:var(--main-color);
    box-shadow: 0 0 0 0.25rem rgba(255,8,68,.25);
}
.form-check-input {
    background-color: var(--mute-info);
}
.form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.form-check-input:focus{
    box-shadow: 0 0 0 0.25rem rgba(255,8,68,.25);
}
.form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.form-check-input:focus{
    box-shadow: 0 0 0 0.25rem rgba(255,8,68,.25);
}
.check{
    display: inline-flex;
    justify-content: space-between;
    gap: 1rem;
}
.check_login{
    display: inline-flex;
    margin-left: 2rem;
    width: 100%;

}
.containeres1 {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    counter-reset: step;
    margin: .6rem 0 2rem;
    padding: 0 40px;
}
.containeres1 .steps1 {
   display: flex;
   width: 100%;
   align-items: center;
   justify-content: space-between;
   position: relative;
}
.steps1 .circle1 {
   display: flex;
   align-items: center;
   justify-content: center;
   height: 35px;
   width: 35px;
   color: #999;
   font-size: 22px;
   font-weight: 500;
   border-radius: 50%;
   background: var(--white-color);
   border: 4px solid var(--mute-info);
   transition: all 200ms ease;
   transition-delay: 0s;
   z-index:2;
}
.steps1 .circle1::after{
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 0.2rem);
    font-size: 0.85rem;
    color: #666;
}
.steps1 .circle1.active1 {
   transition-delay: 100ms;
   border-color: #ff0844;
   color: #ff0844;
}
.steps1 .progress-bar1 {
   position: absolute;
   height: 4px;
   width: 100%;
   background: #e0e0e0;
   z-index: 1;
}
.progress-bar1 .indicator1 {
   position: absolute;
   height: 100%;
   width: 0%;
   background: #ff0844;
   transition: all 300ms ease;
}
.containeres1 .buttons1 {
   display: flex;
   gap: 10px;
}
 
.form-step1 {
   display: none;
   transform-origin: top;
   animation: animate 0.5s;
}
 
.form-step-active1 {
   display: block;
}
.btn-laranja{
    background-color: var(--main-color);
    color:var(--white-color);
    padding:5px 8px;
    border:1px solid var(--main-color);
    border-radius:4px;
    cursor:pointer;
    font-size:15px;
    transition:all .3s ease;
}
/*.btn-laranja#login{*/
/*    width: 100%;*/
/*}*/
.btn-laranja:hover{
    background-color: var(--light-orange);
    color: var(--white-color);
}
@keyframes animate {
    from {
        transform: scale(1, 0);
        opacity: 0;
    }
    to {
        transform: scale(1, 1);
        opacity: 1;
    }
}
.form_container h2 {
    font-size: 22px;
    color: #0b0217;
    text-align: center;
}
/* singup inicio*/
.signup-container{
    position: absolute;
    top: 0;
    left: 0;
    /* background: rgba(229, 220, 255, 0.960); */
    background: rgb(158 139 159/ 96%);
    width: 110%;
    height: 100vh;
    display: none;
    transform: translateY(100%);
    justify-content: center;
    align-items: center;
    z-index: 999;
    animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
    0%{
        transform: translateY(100%);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

#signupFormContainer{
    display: none;
}

.signform-container{
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    max-width: 960px;
    height: 600px;
    background: var(--white-color);
    border-radius: 15px;
    /* box-shadow: 15px 37px 67px rgba(0, 0, 0, 1.25); */
    box-shadow: 15px 37px 67px var(--card-shadow);
}

.centersignForm{
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    animation: slideInsing 0.5s ease-in-out forwards;
    animation-delay: 0.6s;
}

@keyframes slideInsing{
    0%{
        transform: translateX(-5%);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}

#signupForm{
    width: 460px;
    margin: 0 auto;
    padding: 1px;
    background-color: var(--white-color);
    border-radius: 6px;
    float: right;
    display: flex;
    justify-content: center;
    margin: 0px 68px 37px 0px;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

#singupform h2{
    color: var(--dark-color);
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
}

.alemlink {
    margin-top: .3rem;
    margin-bottom: .3rem;
}

.alemlink a{
    color: var(--main-color);
    font-weight: 500;
    text-decoration: none;
}

.alemlink a:hover{
    text-decoration: none;
}

.signflhorizontal{
    display: flex;
    gap: 60PX;
    margin-top: 50px;
}

#signupCutButton{
    position: absolute;
    font-size: 24px;
    top: 15px;
    right: 19px;
    cursor: pointer;
}

.board{
    margin-left: 13px;
    margin-top: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    flex-direction: flex-start;
}

.board-back{
    background: var(--main-color);
    width: 360px;
    height: 564px;
    border-radius: 15px;
}

.board h1{
    font-weight: 600;
    font-size: 34px;
    line-height: 130%;
    color: var(--white-color);
    margin-top: 61px;
    margin-bottom: 0;        
}

.board h3{
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: var(--white-color);
    margin-top: 11px;
}

.board p{
    font-weight: 400;
    font-size: 16px;
    line-height: 163.7%;
    color: var(--mute-info);
    margin-top: 11px;
}

.board-details{
    margin-left: 32px;
    margin-right: 34px;
    margin-top: 41px;
    margin-bottom: 37px;
}

.review-card-position{
    bottom: 45px;
    position: absolute;
}

.review-card{
    width: 284px;
    height: 120px;
    background: var(--main-color-2);
    border-radius: 10px;
}

.review-card-details{
    position: absolute;
    margin: 10px 19px;
    animation: slideInre 1s ease-in-out forwards;
}

@keyframes slideInre{
    0%{
        transform: translateX(-1%);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
.review-card-details p{
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: var(--white-color);
    margin-top: 0;
}

.person-image{
    margin-top: 32px;
    display: flex;
    gap: 12px;
}

.person-image p{
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    color: var(--white-color);
    margin-bottom: 0;
}

.person-image h5{
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
}
.person-image img{
    width: 45px;
    height: 45px;
    border-radius: 25%;
}

.review-card-position{
    display: none;
}

.review-card-position.active{
    display: block;
}
/* singup fim*/

/* form login inicio */
.login-container{
    position: absolute;
    top: 0;
    left: 0;
    background:rgb(158 139 159/ 96%);
    width: 110%;
    height: 100vh;
    display: none;
    transform: translateY(100%);
    justify-content: center;
    align-items: center;
    z-index: 1;
    opacity: 0;
    animation: slideInlog 0.5s forwards;
    overflow: hidden;
}

@keyframes slideInlog{
    0%{
        transform: translateY(100%);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

#login-container{
    display: none;
}

.form-container{
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    padding: 10px;
}

#loginForm{
    max-width: 615px;
    margin: 0 auto;
    padding: 38px;
    width: 26rem;
    padding-top: 10px;
    background-color: var(--white-color);
    border: 2px solid var(--mute-info);
    border-radius: 15px;
    border: none;
    padding-bottom: 20px;
    box-shadow: 15px 37px 58px var(--card-shadow);
}

#loginForm h2{
    font-weight: 600;
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
    opacity: 0;
    margin-top: 1.5rem;
    transform: translateY(100%);
    animation: slideInlogform 0.5s forwards;
    animation-delay: 0.5s;
}

#showLoginFormLink{
    color: var(--main-color);
}
@keyframes slideInlogform{
    0%{
        transform: translateY(100%);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
    
}

label{
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.lablebottom{
    transform: translateY(100%);
    animation: slideInlogform 0.5s forwards;
    animation-delay: 0.6s;
    opacity: 0;
}
#loginCutButton{
    position: absolute;
    font-size: 36px;
    top: -190px;
    right: 19px;
    cursor: pointer;
}
/* codigo wallacy */
.input_box{
    position: relative;
    margin-top: 30px;
    width: 100%;
    height: 40px;
}
.input_box input{
    height: 100%;
    width: 100%;
    background-color: var(--white-color);
    border: none;
    outline: none;
    padding: 0 30px;
    color: #333;
    transition: all 0.2s ease;
    border-bottom: 2px solid #aaaaaa;
}
.input_box input:focus{
    border-color: var(--main-color) ;
}
.input_box i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--font-color);
}
.input_box .bi-eye{
    right:10px;    
}

.input_box i.email,
.input_box i.password{
    left: 0;
}
.input_box input:focus ~ i.email,
.input_box input:focus ~ i.password{
    color: var(--main-color) ;
}
.check-input:checked{
    background: var(--main-color);
}

.input_box i.fa-eye-slash{
    right: 0;
    font-size: 20px;
}
/* codigo wallacy */

#loginForm input[type="checkbox"]{
    margin-right: 5px;
}

.fieldanimation{
    transform: translateY(100%);
    animation: slideInlogform 0.5s forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.rememerandforgot{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    transform: translateY(100%);
    animation: slideInlogform 0.5s forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.fpcolor{
    color: var(--main-color);
    font-weight: 500;
}

.fpcolor p{
    margin-bottom: 0rem;
}

.loginsub-animation{
    transform: translateY(100%);
    animation: slideInlogform 0.5s forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.or-separador{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
    transform: translateY(100%);
    animation: slideInlogform 0.5s forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.or-line{
    flex-grow: 1;
    height: 1px;
    background-color: var(--font-color);
    border-radius: 2px;
}

.or-text{
    margin: 10px;
    color: var(--font-color);
    font-weight: 500;
}

#loginForm .loginFaceGoogle{
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-top:36px;
}

#loginForm button[type="submit"]{
    width: 100%;
}

#loginForm button#loginWithGoogle,
#loginForm button#loginWithFacebook{
    width: 50%;

}
#loginForm button#loginWithGoogle,
#loginForm button#loginWithFacebook{
    background: none;
    color: var(--dark-color);
    border: 1px solid #dadce0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 20px;
    transform: translateY(100%);
    animation: slideInlogform 0.5s forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

#loginForm button#loginWithGoogle:hover{
    background: #fafafa;
}
#loginForm button#loginWithFacebook{
    background: #3b5998;
}
#loginForm button#loginWithFacebook:hover{
    background: #1543a0;
}

#loginWithFacebook i{
    font-size: 17px ;
    color: var(--white-color);
}

.google-logo{
    width: 20px;
    height: 20px;
}

.button-text-g{
    color: var(--dark-color);
}
.button-text-f{
    color: var(--white-color);
}

.dhave-animation{
    transform: translateY(100%);
    animation: slideInlogform 0.5s forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.dhaccount{
    font-weight: 500;
    color: var(--font-color);
    text-align: center;
    margin-top: 22px;
}

#loginForm p:last-child a{
    color: var(--main-color);
    font-weight: 500;
    text-decoration: none;
}

#loginForm p:last-child a:hover{
    text-decoration: none;
}

.cut-button{
    position: absolute;
    font-size: 22px;
    top: 20px;
    right: 28px;
    cursor: pointer;
}

.login-container .show{
    display: flex;
}

input:focus,
select:focus,
textarea:focus,
button:focus{
    outline: none;
}

/* form login fim */

/* esqueceu  a senha inicio*/
.esqueceuSenha-container{
    position: absolute;
    top: 0;
    left: 0;
    background:rgb(158 139 159/ 96%);
    width: 100%;
    height: 100vh;
    /*display: none;*/
    transform: translateY(100%);
    justify-content: center;
    align-items: center;
    z-index: 1;
    animation: slideIn 0.5s forwards;
}

#esqueceuSenhaFormcontainer{
    display: none;
}
#formForgotPassword{
    border-radius: 15px;
    border: none;
    padding-bottom: 20px;
    padding: 28px;
    /*box-shadow: 15px 37px 58px var(--white-color);*/
    background: var(--white-color); 
}
#forgot-password{
    color:var(--color-main);
}
.esqueceuSenhaForm-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    max-width: 880px;
    height: 420px;
    background: var(--white-color);
    border-radius: 15px;
    /* box-shadow: 15px 37px 67px rgba(0, 0, 0, 1.25); */
    box-shadow: 15px 37px 67px var(--card-shadow);
}

.board-password{
    margin-left: 13px;
    margin-top: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    flex-direction: flex-start;
}

.board-back-password{
    background: var(--mute-info);
    width: 330px;
    height: 380px;
    border-radius: 15px;
}

#EsqSenhaForm{
    max-width: 380px;
    /* width: 380px; */
    margin: 0 auto;
    padding: 1px;
    background-color: var(--white-color);
    border-radius: 6px;
    margin: 0px 68px 37px 0px;
}

#EsqSenhaForm h2{
    color: var(--dark-color);
    margin-bottom: 55px;
    margin-top: 0px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
}

/* esqueceu  a senha  fim*/
@media (max-width:1200px) {
    .signup-container{
        width: 100%;
    }
    
    #signupFormContainer{
        left: 50%;
    }
    
    #loginFormContainer{
        left: 50%;
    }
    
    #esqueceuSenhaFormContainer{
        left: 50%;
    }
}
@media (max-width:920px) {
    
    .signform-container{
        max-width: 870px;
    }
    .board-back, .board-back-password{
        width: 324px;
    }

    .board h1{
        font-size: 28px;
        margin-top: 32px;
    }
    .review-card{
        width: 270px;
    }
    .review-card-details{
        margin: 10px 19px;
    }
    .review-card-details p{
        font-size: 12px;
        line-height: 100%;
    }
    #signupForm{
        width: 358px;
        margin: 0px 68px 37px 0px;
    }
}
@media (max-width:782px) {
    .signform-container{
        max-width: 870px;
    }
    .board-back{
        width: 288px;
    }
    
     .board-back-password{
         width:22px;
     }

    .board h1{
        font-size: 26px;
        margin-top: 28px;
    }
    .review-card{
        width: 228px;
        height: 128px;
    }
    .review-card-details{
        margin: 10px 13px;
    }
    #signupForm{
        width: 358px;
        margin: 0px 16px 34px 0px;
    }
    .triangle{
        width: 70px;
    }

    .dots{
        width: 65px;
    }

    .square{
        width: 55px;
    }
}
@media (max-width:685px) {
    #signupForm{
        width: 100%;
        height: 100%;
        margin: 50px 20px 50px 20px;
    }
}
@media (max-width:560px) {
    #loginForm .loginFaceGoogle{
        gap: 1rem;
    }
    .centersignForm{
        overflow-x: scroll;
        /* overflow-y:hidden; */
    }

    #signupForm{
        margin: 324px 20px 50px 20px;
    }
    .first{
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}
@media (max-width:500px) {
    .dhaccount{
        display: flex;
        flex-direction: column;
    }
}
@media (max-width:420px) {
    #loginForm .loginFaceGoogle{
        flex-direction: column;
        align-items: center;
        margin-top:30px;
    }
    #loginForm button#loginWithGoogle, 
    #loginForm button#loginWithFacebook{
        width: 100%;
    }
    .rememerandforgot{
        flex-direction: column;
        align-items: flex-start;
        margin-top: 15px;
        margin-bottom: 12px;
        gap: 0.4rem;
    }
}