*{
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Lato';
    vertical-align: middle;
}
label{
    color: #29abe2;
}
input{
    width: 100%;
    padding: 2%;
}
label{
    font-weight: 600;
}
.invalid-feedback p{
    margin-bottom: 0;
}
.login_page{
    text-align: center;
    color: #000;
    position: relative;
}
.login_page h3{
    color:#29abe2;
    font-weight: 600;
    margin: 2% 0;
    margin-bottom: 6%;
}
.login_page img{
    width: 30%;
    margin: 4%;
    justify-content: center;
}
.forgot{
    text-align: end;
}
.forgot a{
    font-size: 14px !important;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}
.card{
    width: 40%;
    margin: 0;
    box-shadow: rgb(27 20 100 / 80%) 0px 0px 4px;
    border-radius: 10px !important;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 12%);
}
button{
    color: #fff;
    background-color: #29abe2;
    border: none;
    border-radius: 10px;
    padding: 4px 28px;
}
.form-control:focus{
    box-shadow: none;
    border-color: #000;
}
@media (max-width:575px) {
    .card{
        width: 80%;
    }
}
@media only screen and (min-width:576px) and (max-width: 767px){
    .card{
        width: 80%;
    }
}
@media only screen and (min-width:768px) and (max-width: 991px){
    .card{
        width: 50%;
    }
}
@media only screen and (min-width:992px) and (max-width: 1199px) {
    .card{
        width: 40%;
    }
}
@media only screen and (min-width:1200px) and (max-width: 1399px) {
    .card{
        width: 34%;
    }
}
@media only screen and (min-width:1400px) {
    .card{
        width: 32%;
    }
}