@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
.app-init{
   
    margin: 0;
    color: #dad011;
    background-image: url(../img/backlogin.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.banner {
    margin: 0;
    color: #FFF;
    background-image: url(../img/loginsplash.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 29%;
    position: relative;
}

.login{
    margin: 0;
}

.headerlogin h1 {
    color: #FFF;
    text-align: center;
    font-family: Open Sans;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;

}

.banner img {
    width: 10px;
    height: auto;
    max-width: 12%; /* Adicionado para garantir que a largura não seja esticada além de 150px */
}

.formloginarea{
    background-color: #f3f3f3;
    border-radius: 16px;
    padding: 16px;
    color: var(--Light_, #0d0d0e);
}

@media (max-width: 768px) {
    .formloginarea {
        width: 100%;
    }
}
.formloginarea label {
    color: var(--Light_, #0d0d0e);
    font-family: Open Sans;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
}
.formloginarea .form-control{
    color: var(--Light_, #0d0d0e);
    background-color: #efd0b2  ;
    font-family: Open Sans;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
}
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
    background-color: #efd0b2  ;
    color: var(--Light_, #0d0d0e);
}

.form-group input {
    width: 486px;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    outline: none;
    color: var(--Light_, #0d0d0e);  
}

.form-group label {
    position: absolute;
    top: 20%;
    left: 1rem;
    transform: translateY(-50%);
    padding: 0 0.25rem;
    transition: all 0.2s ease;
    color: #999;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-100%);
    font-size: 0.75rem;
    color: #333;
    color: var(--Light_, #0d0d0e);
}

.formloginarea .input-group-text{
    color: var(--Light_, #0d0d0e);
    background-color: #efd0b2  ;
    font-family: Open Sans;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
}
.label-login {
    color: var(--Light_, #FDFCFF);
    font-family: Open Sans;
    font-size: 19px;
    font-style: normal;
}


.mainlogin h2 {
    color: black;
    text-align: center;
    font-family: Montserrat;
    font-size: 37px;
    font-style: normal;
    font-weight: 400;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainlogin h3 {
    color: var(--Light_, #0d0d0e);
    text-align: center;
    font-family: Open Sans;
    font-size: 22
    px;
}

.mainlogin button {
    color: var(--Light_, #FDFCFF);
    text-align: center;
    font-family: Open Sans;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
}

.esqueciasenha {

    text-decoration: none;
    color: var(--Primria---2, #FB8009);
    font-family: Open Sans;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
}

.esquecisenhalink {
    color: var(--Primria---2, #FB8009);
    text-align: center;
}

.esquecisenhalink:hover {
    color: var(--Primria---2, #FB8009);
    font-family: Open Sans;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
}

@media (max-width: 768px) {

    .banner {
        height: 25%;
        position: relative;
    }
    .banner img {
        width: 10px;
        height: auto;
        max-width: 40%; /* Adicionado para garantir que a largura não seja esticada além de 150px */
    }
    
    .mainlogin h2 {
        /* color: #FFF; */
        text-align: center;
        font-family: Thunder;
        font-size: 37px;
        font-style: normal;
        font-weight: 200;
        line-height: normal;
    }

    .mainlogin h2 {
        font-size: 40px;
    }

    .esquecisenhalink {
        display: flex;
        justify-content: center;
        align-items: center;

    }

}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
