
* {
    font-size: 10px;
    font-family: 'Prompt', sans-serif;
}
input {
    outline: none;
    border: none;
}
button {
    outline: none !important;
    border: none;
    background: transparent;
}
.body-login {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    background-image: url(../image/bg.jpg);
}
.body-login:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,168,255,0.5);
    background: -webkit-linear-gradient(left, rgba(0,168,255,0.5), rgba(179, 179, 179, 0.5));
    background: -o-linear-gradient(left, rgba(0,168,255,0.5), rgba(179, 179, 179, 0.5));
    background: -moz-linear-gradient(left, rgba(0,168,255,0.5), rgba(179, 179, 179, 0.5));
    background: linear-gradient(left, rgba(0,168,255,0.5), rgba(179, 179, 179, 0.5));
    pointer-events: none;
}
.modal-login {
    width: 390px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
    padding-right: 55px;
    padding-left: 55px;
    padding-bottom: 30px;
    padding-top: 30px;
    text-align: center;
}
.input-login-form {
    width: 100%;
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}
.input-login-form:hover {
    box-shadow: 0 10px 30px 0px #1f536c24;
    -moz-box-shadow: 0 10px 30px 0px #1f536c24;
    -webkit-box-shadow: 0 10px 30px 0px #1f536c24;
    -o-box-shadow: 0 10px 30px 0px #1f536c24;
    -ms-box-shadow: 0 10px 30px 0px #1f536c24;
    transform: translateY(-3px);
}
.input-login {
    font-size: 14px;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 62px;
    background: transparent;
    padding: 0 20px 0 23px;
}
.focus-input {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 20px;
    box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}
.title-img {
    margin-bottom: 20px;
}
.footer-login {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.button-login {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 160px;
    height: 50px;
    background: linear-gradient(to right, #3091af, #7cc7e1);
    border-radius: 25px;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    margin-top: 10px;
    text-transform: uppercase;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    box-shadow: 0 10px 30px 0px #3091af75;
    -moz-box-shadow: 0 10px 30px 0px #3091af75;
    -webkit-box-shadow: 0 10px 30px 0px #3091af75;
    -o-box-shadow: 0 10px 30px 0px #3091af75;
    -ms-box-shadow: 0 10px 30px 0px #3091af75;
}
.button-login:hover {
    box-shadow: 0px 4px 10px 0px #3091afcb;
    transform: translateY(-3px);
}
@media screen and (max-width: 420px) {
    .modal-login {
        padding-left: 15px;
        padding-right: 15px;
    }
}