@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root{
    --cor-first: #F7FAFC;
    --cor-second: #00509E;
    --cor--tri: #003F73;
    --color-buttons: #0077CC;
    --cor-white: #fff;
    --cor--black: #000;

    --font-family-option-1: 'Poppins', sans-serif;
    --font-family-option-2: 'Noto Sans', sans-serif;
}

body{
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: var(--cor-first);
    overflow-x: hidden;
}

.return{
    background-color: var(--cor--tri);
    padding: 2px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 10px;
    margin-left: 10px;
}

.return i{
    color: var(--cor-white);
    font-size: 1rem;
}

.img-central{
    width: 60vw;
    height: 45vh;

}

.container-login{
    background: var(--cor-white);
    width: 70vw;
    max-width: 350px;
    max-height: 300px;
    border-radius: 20px;
    box-shadow: 0px 10px 40px #00000056;
    padding: 10px;
}

.title{
    font-family: var(--font-family-option-1);
    text-align: center;
    margin: 0;
}

/* Estilização do FORMULÁRIO */

.card-login{
    margin-left: 10px;
    margin-bottom: 10px;
}

.button{
    background: #176EB7;
    color: #ffffff;
    width: 80%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-family: var(--font-family-option-2);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 1px;
    cursor: pointer;
    margin-left: 10%;
    margin-top: 10px;;
    
}

.textfield{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.textfield label{
    font-family: var(--font-family-option-2);
    font-size: 1rem;
}

.textfield input, .textfield div input{
    border: none;
    padding: 4px;

}

.aviso{
    color: red;
    font-family: var(--font-family-option-2);
    font-size: 0.8rem;
    margin: 0;
}
.card-login > a{
    font-family: var(--font-family-option-2);
    font-weight: bold;
    text-decoration: none;
    color: var(--color-buttons);
    font-size: 0.7rem;
}

main{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 550px){
    .img-central{
        height: 47vh;
    }
}

@media (min-width: 765px){
    main{
        flex-direction: row;
  
    }
    .img-central{
        width: 90%;
        height: 70%;
    }
    .container-login{
        margin-right: 20px;
    }
    
}


@media (min-width: 1024px){
   .img-central{
        width: 95%;
        height: 80%;
    }
    .container-login{
        margin-right: 50px;
        height: 350px;
    }
    .textfield label{
        margin-bottom: 5px;
    }
    .textfield{
        margin-bottom: 15px;
    }
    .card-login a{
        font-size: 0.8rem;
    }
    .button{
        font-size: 0.95rem;
        padding: 10px;
        margin: 15px 0px 0px 34px;
    }
    .title{
        font-size: 2.5rem;
    }
    .aviso{
        font-size: 1rem;
    }
}

@media (min-width: 1250px){
    .container-login{
        margin-right: 150px;
        max-height: 450px;
        max-width: 400px;
    
    }
    .img-central{
        width: 90%;
        height: 75%;
    }
    .textfield{
        margin-bottom: 20px;
    }
    .title{
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    .button{
        margin: 15px 0px 0px 34px;
    }
    .textfield input{
        font-size: 0.9rem;
        height: 20px;
    }
    .card-login a{
        font-size: 0.9rem;
    }
    .textfield div{
        display: flex;
        align-items: center;
        gap: 10px;
    }
}