@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

*{
    padding: 0;
    margin: 0;
    font-family: "Titillium Web";
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(imagens/back-superdig.jpg) no-repeat;
    background-size: cover;
}

.FormLogin{
    position: relative;
    background: rgb(255, 255, 255);
    width: 300px;
    height: 400px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #555;
}

.FormLogin .logo{
    color: #111;
    font-size: 22px;
    padding: 10px;
    cursor: pointer;
}

.FormLogin .logo span{
    color:#65127a;
    font-weight: 700;
    text-decoration: overline;
    margin-left: 2px;
}



.FormLogin h3{
    color: #65127a;
    margin-bottom: 10px;
    font-weight: 300;
}

.FormLogin .inputBox{
    margin-top: 20px;
    width: 100%;
    color: #fff;
}

.FormLogin .inputBox input[type="text"],
.FormLogin .inputBox input[type="password"]
{
    border-radius: 3px;
    width: 100%;
    padding: 8px 0;
    text-indent: 20px;
    font-size: 14px;
    border: 1px solid #999;
}

.FormLogin .inputBox label{
    font-size: 14px;
    padding: 5px;
    color: #111;
}

.FormLogin .inputBox input[type="checkbox"]{
    cursor: pointer;
    background-color: #65127a;
}

.FormLogin .inputBox input[type="submit"]{
    color: #fff;
    background: #65127a;
    padding: 10px 20px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.cadastro{
    color: #111;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 200;
}

.cadastro a{
    color: #65127a;
    text-decoration: none;
    font-weight: 500;
}

.cadastro a:hover{
    text-decoration: underline;
}

@media (max-width: 480px){
    .FormLogin{
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

}


