/*---------------------------------------------*/
.authForm .input100 {
    outline: none;
    border: none;
}
.form-group .bb {
    border-bottom: 2px solid #d9d9d9;
}
.authForm input:focus::-webkit-input-placeholder {
    color: transparent;
}
.authForm input:focus:-moz-placeholder {
    color: transparent;
}
.authForm input:focus::-moz-placeholder {
    color: transparent;
}
.authForm input:focus:-ms-input-placeholder {
    color: transparent;
}

/*---------------------------------------------*/

.authForm .card {
    box-shadow: 0 8px 10px -5px rgba(0,0,0,.2), 0 16px 24px 2px rgba(0,0,0,.14), 0 6px 30px 5px rgba(0,0,0,.12);
}
.wrap-input100 .form-control {
    padding: 12px 15px;
}
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 20px 0;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.separator-text {
    padding: 0 10px;
    color: #777;
}
.authForm a {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.authForm a:focus {
    outline: none !important;
}

.authForm a:hover {
    text-decoration: none;
    color: #a64bf4;
}

/*---------------------------------------------*/
.authForm button {
    outline: none !important;
    border: none;
    background: transparent;
}
.authForm button:hover {
    cursor: pointer;
}

.authForm iframe {
    border: none !important;
}
.authForm .txt1 {
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
}
.authForm .txt2 {
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
    text-transform: normal;
}

.authForm .bg1 {
    background-color: #3b5998;
}
.authForm .bg2 {
    background-color: #1da1f2;
}
.authForm .bg3 {
    background-color: #ea4335;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/
.authForm {
    width: 100%;
    margin: 0 auto;
    font-family: 'Nunito', sans-serif;
}

.authForm .container-login100 {
    width: 100%;
    min-height: calc(100vh - 160px);
    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-position: center;
    background-size: cover;
}

.authForm .wrap-login100 {
    /* width: 500px; */
    /* width: 35%; */
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

/*------------------------------------------------------------------
[ Form ]*/

.authForm .login100-form {
    width: 100%;
}

.authForm .login100-form-title {
    display: block;
    font-size: 28px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
    border-bottom: 1px solid #a947f440;
    padding-bottom: 30px;
    margin-bottom: 30px;
    text-transform: normal;
    font-weight: 700;
}

/*------------------------------------------------------------------
[ Input ]*/

.authForm .wrap-input100 {
    width: 100%;
    position: relative;
    /* border-bottom: 2px solid #d9d9d9; */
}

.authForm .label-input100 {
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
    padding-left: 7px;
    
}

.authForm .input100 {
    font-size: 16px;
    color: #333333;
    line-height: 1.2;

    display: block;
    width: 100%;
    height: 55px;
    background: transparent;
    padding: 0 7px 0 43px;
}

/*---------------------------------------------*/
.authForm .focus-input100 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.authForm .wrap-input100 i {
    color: #adadad;
    align-items: center;
    justify-content: center;
    position: absolute;
    /* top: 65%;
    left: 12px; */
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    height: 40px;
    width: 20px;
    text-align: center;
    line-height: 40px;
    font-size: 17px;
}

.authForm .focus-input100::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7f7f7f;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.authForm .input100:focus + .focus-input100::before {
    width: 100%;
}

.authForm .has-val.input100 + .focus-input100::before {
    width: 100%;
}

.authForm .input100:focus + .focus-input100::after {
    color: #a64bf4;
}

.authForm .has-val.input100 + .focus-input100::after {
    color: #a64bf4;
}

/*------------------------------------------------------------------
[ Button ]*/
.authForm .container-login100-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.authForm .wrap-login100-form-btn {
    width: 50%;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 25px;
    overflow: hidden;
    margin: 0 auto;

    box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
    -moz-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
    -webkit-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
    -o-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
    -ms-box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
}

.authForm .login100-form-bgbtn {
    position: absolute;
    z-index: -1;
    width: 300%;
    height: 100%;
    background: #a64bf4;
    background: -webkit-linear-gradient(
        right,
        #00dbde,
        #fc00ff,
        #00dbde,
        #fc00ff
    );
    background: -o-linear-gradient(right, #00dbde, #fc00ff, #00dbde, #fc00ff);
    background: -moz-linear-gradient(right, #00dbde, #fc00ff, #00dbde, #fc00ff);
    background: linear-gradient(right, #00dbde, #fc00ff, #00dbde, #fc00ff);
    top: 0;
    left: -100%;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.authForm .login100-form-btn {
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    text-transform: normal;

    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
}

.authForm .wrap-login100-form-btn:hover .login100-form-bgbtn {
    left: 0;
}

/*------------------------------------------------------------------
[ Alert validate ]*/

.authForm.validate-input {
    position: relative;
}

.authForm .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;
    bottom: calc((100% - 20px) / 2);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    right: 2px;
    pointer-events: none;

    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;
}

.authForm .alert-validate::after {
    content: "\f06a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 16px;
    bottom: calc((100% - 20px) / 2);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    right: 8px;
}

.authForm .alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }
}

/*//////////////////////////////////////////////////////////////////
[ Responsive ]*/

@media (max-width: 576px) {
    .wrap-login100 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ================================================================================== */
/* ================================================================================== */
/* ================================================================================== */
/* ================================================================================== */
/* ================================================================================== */
/* ================================================================================== */
