.box{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}
*{
    font-family: 'Lora', serif;
     }
.form{
    background-color: white;
    width: 400px;
    min-height: 400px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.form img{
    width:250px;
    height: 100px;
    display: block;
    margin: auto;
}
.form h1{
    font-weight: 600;
    margin-top: 10px ;
    margin-bottom: 40px;
    font-size: 26px;
    text-align: center;
}
.form-group{
    height:35px;
    margin-bottom: 40px;
    margin-top: 20px;
    position: relative;
}
.form-control{
    position: absolute;
    top:0;
    left: 0;
    width:92%;
    height: 100%;
    background: none;
    border:1px solid gray;
    outline: none;
    border-radius: 3px;
    padding: 5px 16px;
    z-index: 1;
    font-size: 17px;
}
.form-label{
    position: absolute;
    top:12px;
    left: 13px;
    font-size: 16px;
    color:hwb(0 59% 40%);
    background-color: rgb(255, 255, 255);
     padding: 0 6px;
     transition: .2s;
}
.form-control:focus+ .form-label{
    top:-9px;
    z-index: 5;
    color:#1866c9;
    font-weight: 500;
}
.form-control:focus{
    border: 1.5px solid #1866c9;
}
.form-control:not(:focus):valid+label{
    top:-9px;
    z-index: 5;
}
.form-control:valid{
    border:1.5px solid green;
}
.btn{
    display: flex;
    top: 0;
    justify-content: space-between;
    align-items: center;
}
.btn a{
    color:rgb(7, 7, 68);
    font-size: 21px;
    font-weight: 600;
  text-decoration: none;
}
.btn button{
    background-color: green;
    padding: 10px 35px;
   border: none;
   color:white;
   border-radius: 3px;
   font-size: 18px;
}
.showLabel{
    font-size: 17px;
}
.btn button:hover{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    background-color: rgb(3, 155, 3);
}
.singup{
  font-size: 20px;
}
.singup a{
    font-size: 18px;
    text-decoration: none;
    color:#08499e;
    padding-left: 5px;
}
.singup a:hover{
    color: rgb(255, 0, 93);
}