*{
    margin: 0;
    padding: 0;
}
.head{
    position: relative;
    width: 100%;
    height: 120px;
    background-color: #13335a ;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    .nameSis{
        width: 400px;
        color: #eceded;
        font-size: larger;
        margin-left: 20px;
    }

    .image{
        position: absolute;
        left: 0;
        top: 0;
        width: 300px;
        
    }
}



main{
    position: absolute;
    width: 500px;
    height: 300px;
    background-color:#eceded ;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    align-items: center;
    text-align: center;
    padding: 5px;
    font-size: larger;
    border-radius: 10px;
    box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.726);
    
}
form{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.input{
    border: none;
    width: 90%;
    height: 50px;
    margin-top: 10px;
    margin-bottom: 5px;
    transition: 1s;
    border-radius: 2px;
    outline: none;
    padding: 2px;
    background-color: rgb(186, 186, 186);
    font-size: large;
}
.input:focus{
    background-color:  #eceded;
    border: none;
    box-shadow: 1px 1px 5px #3a3a3a;
}
.button{
    width:44%;
    height: 40px;
    margin-top: 10px;
    border: none;
    border-radius: 10px;
    background-color: #13335a;
    color: #eceded ;
}

#erro{
    color: red;
}

.data{
    position:relative;
    left: 100%;
    color: #eceded;
    
}

.load{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #3a3a3a5d;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
}