@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@1,700&family=Roboto+Condensed&display=swap');

*{
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body{
    background: url(../img/fundo-login.jpg);
    background-size: contain;
    background-position: center;
}
.box{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    gap: 15px;
}
.logo{
    width: 150px;
}
.primaria{
    border: 3px solid deepskyblue;
    border-radius: 20px;
    box-shadow: 0px 10px 40px #00000056;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 450px;
    height: 380px;
}
.input-text{
    padding: 15px;
}
.input-text > input{
    border: 1px solid black;
    width: 350px;
    height: 30px;
    text-align: center;
    border-radius: 10px;
    font-size: 12pt;
    box-shadow: 0px 10px 40px #00000056;
    outline: none;
}
.btn-login{
    width: 100%;
    padding: 20px 0px;
    border-radius: 10px;
    border: none;
    background: black;
    color: white;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    box-shadow: 0px 10px 40px #00000056;
    letter-spacing: 2px;
}
.btn-login:hover{
    background: #535753;
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}
.checkbox > label{
    width: 100%;
    color: #fff;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 10px;
}
.checkbox > input{
    border-radius: 5px;
    outline: 0;
    width: 100%;
    height: 25px;
    padding: 5px;
}