body
{
    margin: 0;
    padding: 0;
    background-color: #0082e6;
}
.tittle
{
    position: center;
    margin-top: 50px;
    padding-left: 20px;
    color: white;
    border-radius: 5px;
    font-size: 50px;
    text-align: center;
    
}
.center
{
    position: absolute;
    top:50%;
    left: 50%;
    transform:translate(-50%,-50%) ;
    width: 400px;
    background-color: white;
    border-radius: 5px;
    color: #0082e6;

}
.center h1
{
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid silver;
}
.form
{
    padding-bottom: 15px;
    margin: 0 20px;
    text-align: center;
}
.textfield
{
    width: 100%;
    height: 50px;
    font-size: 18px;
    border-radius: 5px;
    border: 1px solid #0082e6;
    box-sizing: border-box;
    padding-left: 10px;
    margin: 7px 0px;
}
.btn
{
    width: 100%;
    height: 50px;
    background-color: #0082e6;
    border-radius: 5px;
    font-size: 20px;
    margin: 7px 0px;
    color: white;
    border: 0px;
    cursor: pointer;
}
.btn:hover
{
    background-color: rgb(156, 219, 39);
}
.forgotpass
{
    font-size: 16px;
    padding: 4px 0px;
    margin: 3px;
}
.link
{
    text-decoration: none;
}

@media (max-width: 470px)
{
    .center
    {
        width: 88%;
    }
    
}