*{
    font-family: 'Lora', serif;
     }
     .box{
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        user-select: none;
    }
    .form{
        background-color: white;
        width: 450px;
        min-height: 400px;
        padding: 30px;
        border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .form img{
        width:200px;
        height: 80px;
        display: block;
        margin: auto;
    }
    
.form h1{
    font-weight: 600;
    margin-top: 10px ;
    margin-bottom: 40px;
    font-size: 1.625em;
    text-align: center;
}
.form-group{
    height:32px;
    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: 16px;
}
.form-label{
    position: absolute;
    top:11px;
    left: 15px;
    font-size: 16px;
    color:hwb(0 57% 42%);
    background-color:white;
     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;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.form-control:not(:focus):valid+label{
    top:-9px;
    z-index: 5;
}
.form-control:valid{
    border:1.5px solid rgb(4, 152, 4);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    background: none;
}
.btn1 button{
    background-color: green;
    border: none;
    padding: 12px 50px;
    border-radius: 3px;
    display: flex;
    margin: auto;
    color:white;
    font-weight: 600;
    font-size: 18px;
}
.btn1 button:hover{
    background-color: rgb(3, 172, 3);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
a{
    text-decoration: none;
}
.showLabel{
    font-size: 15px;
}

