﻿.wrap-login100 {
    margin: auto;
    margin-top: 40px;
    width: 390px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 45px 33px;
    box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0 5px 10px 5px rgba(0, 0, 0, .2);
}
.validate-input {
    position: relative;
}
.wrap-input100 {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #adadad;
    margin-bottom: 37px;
}
input {
    outline: none;
    border: none;
}
.input100 {
    font-size: 15px;
    color: #555;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 45px;
    background: 0 0;
    padding: 0 5px;
}
.focus-input100 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}
textarea:focus, input:focus {
    border-color: transparent !important;
}
.login100-form-title {
    display: block;
    font-size: 30px;
    color: #333;
    line-height: 1.2;
    text-align: center;
}
.p-b-48 {
    padding-bottom: 48px;
}
.input100:focus + .focus-input100::before {
    width: 100%;
}
.focus-input100::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    background: #6a7dfe;
    background: -webkit-linear-gradient(left, #0e00c4, #00ED7B);
    background: -o-linear-gradient(left, #0e00c4, #00ED7B);
    background: -moz-linear-gradient(left, #0e00c4, #00ED7B);
    background: linear-gradient(left, #0e00c4, #00ED7B);
}
.focus-input100::after {
    font-size: 15px;
    color: #999;
    line-height: 1.2;
    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 16px;
    left: 0;
    padding-left: 5px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
}
.input100:focus + .focus-input100::after, .has-val.input100 + .focus-input100::after {
    top: -15px;
}

.login100-form-btn {
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    outline: none;
    border: none;
}
.login__button {
    display: flex;
    background-color: #00ED7B;
}
.login__button *:first-child {
   margin-right: 5px;
}
.function__name {
    background: #0e00c4;
    border-color: #0e00c4;
    color: #FFF;
    padding: 9px 26px;
    text-align:center;
    cursor: pointer;
}
.function__option + .function__option {
    margin-top: 10px;
}
main {
    background-image: url("/assets/images/login/bg.png");
    height: 100vh;
    background-size: cover;
    background-position: center;
}
.container{
    max-width: unset!important;
}
@media (max-width: 768px) {
    main {
        height: calc(100vh - 100px);
        background-position: right;
    }
}
 
@media (max-width: 480px) {
    main {
        height: calc(100vh - 50px);
    }
}