


body
{
   margin: 0;
   padding: 0;
   background-color: white;
}


.label
{
position: absolute;
top: 20%;
left: 50%;
transform: translate(-50%,-50%);
color: blue;
font-size: 30px;
font-weight: 10px;;


}


.center
{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 400px;
background-color: white;
border-radius: 15px;
border: 2px solid blue;
}

.center h1
{
text-align: center;
padding-bottom: 20px;
border-bottom: 2px solid blue;
color: blue;

}

.form
{

padding-bottom: 15px ;
margin: 0  20px;
text-align: center;


}

.textfiled
{

    width: 100%;
    height: 50px;
    font-size: 18px;
    border: 2px solid blue;
    border-radius: 5px;
    box-sizing: border-box;
    padding-left: 10px;
    margin: 7px 0px;
}

.btn
{

    width: 100%;
    height: 50px;
    background-color: blue;
    border-radius: 5px;
    font-size: 20px;
    margin: 7px 0;
    border: 0;
    cursor: pointer;
    color: white;
    
}

.btn:hover
{
background-color:#0a63d8 ;
}

.forgetpass
{

font-size: 15px;
padding: 4px 0;
margin: 3px;

}

.link
{
text-decoration: none;
color: #0a63d8 ;

}

@media(max-width: 470px)
{

.center
    {

        width: 88%;

    }

}


