@import url(_reset.css);
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

body{
    height: 100vh;
}

.logo{
    max-width: 40px;
    height: auto;
    padding: 0.5rem;
    margin-left: 1rem;
}

header {
    display: flex;
    background-color: #000000;
    justify-content: space-between;
    align-items: center;
    height: 3rem;
    border-bottom: 1px solid #000000;
}

main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.login-form{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 2rem 3rem;
}

p{
    display: flex;
    justify-content: space-between;
}

label{
    margin: 0.5rem 1rem;
}

.form-control{
    border: 0.03rem #262626 solid;
    padding: 0.5rem 0.5rem;
    margin: 0.2rem 0.5rem 0.5rem 0.5rem;
    border-radius: 0.3rem;
    min-width: 150%;
}

.form-control::placeholder {
    padding-left: 0.5rem;
    margin: 0.2rem 0.5rem 0.5rem 0.5rem;
    color: #aeaeae;  
    letter-spacing: 0.05rem; 
}

/*.form-control-username {
    background-image: url('../img/icone-username.svg'); 
    background-position: 0.7rem center; 
    background-repeat: no-repeat; 
    padding-left: 2.3rem;  
}*/

button{
    align-self: center;
    margin-top: 2rem;
    border: 0.1rem solid #4572E5;
    background-color: #4572E5;
    border-radius: 0.5rem;
    color: white;
    min-width: 150%;
    padding: 0.5rem 0;
}

.login-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    padding: 1rem 5rem 3rem 5rem;
    margin-top: 40%;
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 375px) {
    .login-content{
        margin-left: 10%;
        margin-right: 10%;
    }

}

.logo-complete {
    max-width: 200px; 
    height: auto; 
    display: block; 
    margin-left: auto; 
    margin-right: auto;
    image-orientation: from-image; 
}

@media (max-width: 768px) {
    .logo-complete {
        max-width: 150px; 
    }
}

@media (max-width: 480px) {
    .logo-complete {
        max-width: 100px; 
    }
}