/*
    static/css/app/lmodal.css

    login modal

*/
.login-page {
    width: 360px;
    padding: 8% 0 0;
    margin: auto;
}
.reg-finish-page {
    width: 100%;
    padding: 2% 0 0;
    margin: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.rememberme {
    font-weight: normal;
    color: #22A5EA;
}
#rememberme {
    font-weight: normal;
    width: auto;
    color: #C22F1B;
}
.lform {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    max-width: 360px;
    margin: 0 auto 100px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.lform input {
    font-family: "Roboto", sans-serif;
    outline: 0;
    background: #fff;
    border: 2px solid #5DB6E4;
    width: 100%;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
}
.lform button {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    outline: 0;
    background: #5DB6E4;
    width: 100%;
    border-color: #5DB6E4;
    border-radius: 4px;
    padding: 15px;
    color: #ffffff;
    font-size: 14px;
    -webkit-transition: all 0.3 ease;
    transition: all 0.3 ease;
    cursor: pointer;
}
.lform button:hover, .lform button:active, .lform button:focus {
    background: #22A5EA;
    color: #fff;
}
.mheader {
    padding-bottom: 15px;
    color: #5DB6E4;
}
.separator-login {
    border: 0.5px solid #f08274;
    width: 100%;
}
.lform .lmessage {
    margin: 15px 0 0;
    color: #22A5EA;
    font-size: 12px;
}
.lform .lmessage a {
    color: #22A5EA;
    text-decoration: none;
}
.forgot-form {
    display: none;
}
.on-over {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-filter: grayscale(100%);
}
.on-over:hover {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -webkit-filter: grayscale(0%);
    transition: all 500ms ease;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/** 
 * checkbox style 
 * from : https://codepen.io/CreativeJuiz/pen/BiHzp
 * 
 * **/