* {
    box-sizing: border-box;
    font: normal 15px "Arial", sans-serif;
}

    *::after, *::before {
        box-sizing: inherit;
    }

html,
body {
    font: normal 15px "Arial", sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
}

[s-click] {
    cursor:pointer;
}

a {
    color: rgb(255 140 0);
    text-decoration: none;
    cursor: pointer;
}

    a:hover {
        text-decoration: none;
    }

button:focus {
    outline: 0 !important;
}


main {
    position: relative;
    background: rgb(92, 99, 80);
    padding: 20px;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}

.wrap {
    width: 100%;
}

label {
    display: block;
}

input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: block;
    outline: none;
    padding: 0 8px 8px 30px;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 100%;
}

    input:focus {
        border-bottom-color: var(--color-orange);
    }

.row::after {
    clear: both;
    content: "";
    display: block;
    width: 100%;
}

.col {
    border-radius: inherit;
    float: left;
    margin: 0;
    padding: 30px 40px;
    position: relative;
}

    .col.col-6 {
        width: calc(((100% - calc(((12 / 6) - 1) * 0px)) / 12) * 6);
    }

        .col.col-6:not(:last-child) {
            margin: 0 0px 0 0;
        }

.login-form {
    background: #ffffff;
    text-align: left;
    width: 400px;
    min-height: 400px;
    padding: 40px;
}

    .login-form .input-group {
        margin-bottom: 30px
    }

    .login-form input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
    }

    @media screen and (max-width:480px) {
        .login-box {
        height: auto;
        min-height: 500px;
    }

    .login-title {
        min-height: 150px;
        padding: 20px;
    }

    .login-form {
        width: 100%;
        min-height: 350px;
    }

    .login-title h1 {
        font-size: 35px;
    }

    .login-title .page-subtitle {
        font-size: 20px;
    }
}

@media screen and (max-width:767px)  {
    .check-list {
        display: none;
    }
}

@media screen and (max-width:500px) {
    .login-box {
        height: auto;
        min-height: 450px;
        width:calc(100% - 40px);
        margin:20px;
    }
}

.small-text {
    font-size: 22px;
}

.avatar {
    background: white;
    border-radius: 50%;
    box-shadow: none;
    cursor: pointer;
    height: 100px;
    margin: 0 auto 30px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100px;
}

    .avatar:hover {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .avatar::after, .avatar::before {
        border-radius: 50%;
        color: var(--color-orange);
        content: "";
        left: 50%;
        position: absolute;
        -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
        transform: translate3d(-50%, -50%, 0) rotate(-45deg);
        z-index: 1;
    }

    .avatar::after {
        border: 3px solid;
        height: 32px;
        top: 36%;
        width: 32px;
    }

    .avatar::before {
        border: 3px solid transparent;
        border-top: 3px solid;
        border-right: 3px solid;
        height: 48px;
        top: 73%;
        width: 48px;
    }

    .avatar img {
        border-radius: inherit;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        position: relative;
        width: 100%;
        z-index: 2;
    }

.registration {
    margin: 0 0 20px;
}


.input-group.login input,
.input-group.passw input {
    border: 0;
    background-color: transparent;
}

.input-group.login .input-group-text,
.input-group.passw .input-group-text {
    border: 0;
    background-color: transparent;
}

.input-group.login,
.input-group.passw {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

    .input-group.login input.form-control:focus,
    .input-group.passw input.form-control:focus {
        background-color: transparent;
        outline: 0;
        box-shadow: none;
    }

.login-btn {
    border: none;
    background: #3c403a;
    color: #ffffff;
    border-radius: 2px;
    text-transform: uppercase;
    display: block;
    padding: 12px;
    width: 100%;
    margin-bottom: 15px;
}

.lost-passwd {
    margin: 30px 0 0;
}

.check-list {
    list-style: none;
    margin-bottom: 20px;
    margin-top: 30px;
    padding-left: 0;
}

    .check-list li {
        margin-bottom: 20px;
        line-height: 1.5;
        display: flex;
    }

       .check-list li i {
            color: var(--color-orange);
            margin-right: 10px;
            font-size: 20px;
        }

.language-item .langLink {
    cursor: pointer;
}

    .language-item .langLink.active {
        color: var(--color-orange) !important;
        cursor: text !important;
    }

.language-item span {
    font-size: 14px;
    padding: 0 10px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
}
    .language-item span {
        border-right: 1px solid;
    }

    .language-item span:last-child {
        padding-right: 0px;
        border-right: 0;
    }

.login-block {
    margin-bottom: 20px;
}

    .login-block .nav-tabs {
        border-bottom: none;
    }

    .login-block .nav-item.nav-link {
        border: none;
        background: transparent;
        padding: 0 0 5px 0;
        color: #b4b4b4;
        text-transform: uppercase !important;
        margin-right: 15px;
        font-size: 22px;
        margin: 0 15px 10px 0;
        display: inline-block;
        border-bottom: 2px solid transparent;
    }

        .login-block .nav-item.nav-link.active {
            border-bottom: 2px solid #ff8c00;
            color: #414141;
        }

.social-icons > li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}

.social-icons {
    padding-left: 0;
    text-align: center;
    list-style: none;
    margin-top: 15px;
}

.social-icons li a {
    display: table;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3b5998;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);
    box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);
    text-align: center;
    -webkit-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}
    .social-icons li a i {
        display: table-cell;
        vertical-align: middle;
        font-size: 17px;
        color: #ffffff;
    }

    .social-icons li a:hover {
        background-color: #9600f4;
    }

.btn-google {
    background-color: rgba(213,74,63,1) !important;
}

.btn-telegram {
    background-color: rgba(30,150,200,1) !important;
}

.recover-password {
    color: rgba(0, 0, 0, 0.5);
}

#recover-info {
    color: #869195;
    background-color: #e3f2fd;
    border: 1px solid #82c4f8;
    padding: 1rem 1.25rem;
    border-radius: 4px;
}
