body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(to right, #ff6600, #facf22);
}

.promoxes{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 50px;
}

.login-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 90px 80px 90px;
    /* background: rgba(255, 255, 255, 0.9); */
    background: rgba(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    font-family: "National Park", sans-serif;
    text-align: center;
    order: 2;
 }

 .text-muted{
    font-family: "Noto Sans", sans-serif;
    font-style: italic;
 }

.promobox-right,
.promobox-left{
    flex: 1;
    order:1;
    z-index: -1;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
 }

@keyframes slideInFromLeft {
    0% {
        opacity: 0;    
        transform: translateX(-60px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

.promobox-left img,
.promobox-right img{
    width: 78%;
}

@media(max-width:1758px){
    .promobox-left img,
    .promobox-right img{
        width: 74%;
    } 
    .promobox-right{
        margin-left: 0;
     }
    
    .promobox-left{
        margin-left: 0;
    }
}

.promobox-right:not(.active) {
    opacity: 0;
    visibility: hidden;
}

.promobox-left.active,
.promobox-right.active {
    margin-right: -4rem;
    display: block;
    opacity: 1;
    visibility: visible;
    animation: slideInFromLeft 2s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 1;
}

@media(max-width: 1366px) {
    .promobox-left img,
    .promobox-right img {
        width: 80%;
    }

    .promobox-left,
    .promobox-right {
        margin-bottom: -3rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
    }
}

@media(max-width: 1084px) and (min-width:901px){
    .promobox-left img,
    .promobox-right img {
        width: 75%;
        margin-left: 2rem;
    }

    .login-box {
        padding: 40px 65px 70px 65px;
        margin-right: 2rem;
    }
}

@media(max-width: 900px) {
    .promoxes{
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }

    body{
        overflow-y: scroll;
    }

    .login-box {
        order: 1 !important;
        margin-top: 5rem;
    }
    
    .promobox-left,
    .promobox-right{
        order: 2 !important;
        margin-bottom: 2rem;
    }

    .promobox-left img,
    .promobox-right img {
        width: 80%;
        margin-left: 1.5rem;
    }
}

@media(max-width:679px){
    .promobox-left.active,
    .promobox-right.active {
        margin: 0;
    }
     .promobox-left img, 
     .promobox-right img{
        width: 75%;
        margin-left: 5rem;
    }
}

@media(max-width:600px){
    .promobox-left.active,
    .promobox-right.active {
        margin: 0;
    }
     .promobox-left img, 
     .promobox-right img{
        width: 80%;
        margin-left: 3.8rem;
    }
}

form{
    width: 100%;
}

 .login-logo img {
     max-width: 300px;
     margin: 0 auto;
     display: block;
 }

 h3{
    font-weight: 700;
 }

 .form-outline {
     margin-bottom: 1rem;
 }

 .form-outline i {
     position: absolute;
     margin-left: 10px;
     margin-top: 14px;
     color: #999;
 }

 .form-outline input {
     padding-left: 35px;
     width: 87%;
     height: 45px;
     border: 1px solid #ccc;
     border-radius: 5px;
     outline: none;
 }

 .btn-lg {
     width: 100%;
     height: 45px;
     background: #ff9900;
     border: none;
     color: white;
     border-radius: 5px;
     font-size: 16px;
     font-weight: bold;
     cursor: pointer;
 }

 button:hover {
     background-color: #ff4d00;
     animation: infinite fade-in-out 3s;
 }

 @keyframes fade-in-out {
     0% {
         transform: scale(1);
     }
     50% {
         transform: scale(1.02);
     }
     100% {
         transform: scale(1); /* Volta ao tamanho original */
     }
 }

 .alert {
     margin-top: 15px;
     text-align: center;
 }

 @media (max-width: 601px) and (min-width: 430px){
     .login-box {
         padding: 40px 50px 50px 50px;
     }
     .promobox-left img, 
     .promobox-right img{
        width: 80%;
        margin-left: 2.5rem;
    }
 }

@media (max-width: 429px) and (min-width: 381px){
    .login-box {
        padding: 40px 30px 50px 30px;
    }
    .form-outline input {
        padding-left: 35px;
        width: 77%;
        height: 40px;
    }
    .btn-lg {
        width: 90%;
    }
    .promobox-left img, 
    .promobox-right img{
       width: 80%;
       margin-left: 2.3rem;
   }
}

@media  (max-width: 380px) and (min-width: 340px){
    .login-box {
        padding: 40px 20px 50px 20px;
    }
    .form-outline input {
        padding-left: 35px;
        width: 67%;
        height: 40px;
    }
    .btn-lg {
        width: 80%;
    }
    .login-logo img {
        max-width: 250px;
    }
    .promobox-left img, 
    .promobox-right img{
       width: 80%;
       margin-left: 2.2rem;
   }
}
@media  (max-width: 339px) and (min-width: 330px){
    .login-box {
        padding: 40px 40px 50px 40px;
    }
    .form-outline input {
        padding-left: 35px;
        width: 72%;
        height: 40px;
    }
    .btn-lg {
        width: 85%;
    }
    .login-logo img {
        max-width: 230px;
    }
    .promobox-left img, 
    .promobox-right img{
       width: 90%;
       margin-left: .9rem;
   }
}
@media  (max-width: 329px) and (min-width: 270px){
    .login-box {
        padding: 40px 30px 50px 30px;
    }
    .form-outline input {
        padding-left: 30px;
        width: 65%;
        height: 40px;
    }
    .btn-lg {
        width: 80%;
    }
    .login-logo img {
        max-width: 200px;
    }
}
@media  (max-width: 269px){
    .login-box {
        padding: 40px 20px 50px 20px;
    }
    .form-outline input {
        padding-left: 30px;
        width: 65%;
        height: 40px;
    }
    .btn-lg {
        width: 80%;
    }
    .login-logo img {
        max-width: 200px;
    }
}