﻿
/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
    font-family: Poppins;
    src: url('../fonts/Poppins-Regular.woff') format("truetype");
}

@font-face {
    font-family: Lato;
    src: url('../fonts/Lato-Regular.woff') format("truetype");
}

@font-face {
    font-family: Montserrat;
    src: url('../fonts/Montserrat-Regular.woff') format("truetype");
}
@font-face {
    font-family: Montserrat-Bold;
    src: url('../fonts/Montserrat-Bold.woff') format("truetype");
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Poppins-Regular, sans-serif;
    background: #AFD6D1 0% 0% no-repeat padding-box;
}


/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-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: #AFD6D1 0% 0% no-repeat padding-box;
}

.wrap-login {
    background: rgba(255, 255, 255, 0.6) 0% 0% no-repeat padding-box;
    border-radius: 30px;
    padding: 50px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    width: 529px;
    min-height: 712px;
    margin: 0 auto;
}

.login-image {
    background: transparent url('../img/login-bg.svg') 0% 0% no-repeat padding-box;
    opacity: 1;
    background-position: right;
    background-size: contain;
}

.login-header {
    margin-bottom: 40px;
}
    .login-header img {
        margin-bottom:25px;
        width: 50%;
    }

.login-header-title {
    text-align: left;
    font: normal normal 900 40px/49px Montserrat-Bold;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.forgot {
    width: 50%;
    float: right;
    text-align: right;
    font: normal normal normal 16px/19px Lato;
    letter-spacing: 0px;
    color: #0998FF;
    opacity: 1;
}

.password {
    width: 50%;
    float: left;
}

.label-input {
    text-align: left;
    font: normal normal normal 20px/24px Lato;
    letter-spacing: 0px;
    color: #979797;
    margin-bottom:10px;
}
.label-checkbox {
    text-align: left;
    font: normal normal normal 16px/19px Lato;
    letter-spacing: 0px;
    color: #979797;
    opacity: 1;
}

.input {
    width: 100%;
    height: 61px;
    font: normal normal normal 20px/24px Lato;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 12px;
    border: none;
    padding: 10px 15px;
    opacity: 1;
    outline: 0;
}
    .input:focus {
        background: #FFFFFF 0% 0% no-repeat padding-box;
        border: 1px solid #0998FF;
        border-radius: 12px;
        opacity: 1;
        outline: none;
    }

.login-form-btn {
    margin-top: 20px;
    height: 61px;
    padding: 10px 15px;
    background: #247DBD 0% 0% no-repeat padding-box;
    border-radius: 12px;
    border: none;
    font: normal normal normal 18px/27px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    min-width: 193px;
}


    .login-form-btn:hover {
        opacity: 0.77;
    }
   

/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
    .login-form {
        padding: 43px 15px 57px 117px;
    }
}

@media (max-width: 480px) {
    .login-form {
        padding: 43px 15px 57px 15px;
    }

    .label-input {
        text-align: left;
        position: unset;
        top: unset;
        left: unset;
        width: 100%;
        padding: 0 5px;
    }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 2px;
    pointer-events: none;
    font-family: Poppins;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "x";
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 8px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }
}

/*[ Width & Height ]
-----------------------------------------------------------
*/
.sizefull {
    width: 100%;
    height: 100%;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.max-w-full {
    max-width: 100%;
}

.max-h-full {
    max-height: 100%;
}

.min-w-full {
    min-width: 100%;
}

.min-h-full {
    min-height: 100%;
}

/*[ Layout ]
///////////////////////////////////////////////////////////
*/

/*[ Flex ]
-----------------------------------------------------------
*/

.flex-sb-m {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

/*------------------------------------------------------------------
[ Common CSS ]*/
.div-email {
    margin-bottom: 26px;
}

.div-password {
    margin-bottom: 18px;
}

.div-forgot-container {
    padding-bottom: 30px;
}
.section-title {
    margin: 10px 10px;
}
.section-footer {
    margin: 10px 10px;
}
