*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    font-family: Arial, Helvetica, sans-serif;
}

:root{
    --orange: #FF9C4D;
    --dark-orange: #d98642;
}

body{
    background-color: var(--orange);
}

main{
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
}

div{
    width: 380px;
}

div#tela-login{
    height: 400px;
    position: relative;
    padding: 0 40px;

    background-color: white;
}

div#tela-imagem{
    height: 150px;
}

div#tela-login h1{
    margin: 20px 0;
}

div#tela-login p{
    width: 100%;
    font-size: 14px;
}

div#tela-login label{
    display: flex;
    align-items: center;

    margin-bottom: 15px;
}

.material-symbols-outlined{
    color: var(--orange);
}

div#tela-login input{
    font-size: 18px;

    width: 80%;
    height: 40px;
    margin-left: 10px;
    padding-left: 10px;

    padding: 6px 8px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0 , 0.1);
}

p > a{
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
}

p > a:hover{
    text-decoration: underline;
}

p > a:active{
    color: red;
}

p.text-center{
    text-align: center;
}

button{
    color: white;
    font-size: 18px;
    width: 100%;
    height: 50px;

    margin-top: 30px;
    margin-bottom: 20px;

    border: none;
    border-radius: 5px;

    background-color: var(--orange);
}

button:hover{
    background-color: var(--dark-orange);
}

button:active{
    background-color: var(--orange);
}

button, input{
    cursor: pointer;
}

div#tela-imagem{
    position: relative;
}

div#tela-imagem > picture > img{    
    width: 100%;
    height: 100%;

    object-fit: cover;

    position: absolute;
    transform: translate(-0%, -100%);

    z-index: -1;
    opacity: 0.6; 
}

div#tela-imagem h2{
    color: white;
    font-weight: bold;

    font-size: 26px;
    height: 100%;
    line-height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

div#tela-imagem span{
    font-size: 14px;
}
