.wrapper {
    flex: 1;
    height: 100vh;
    background-color: #141515;
}
.header {
    width: 100%;
    display: flex;
    padding: 20px 0 10px 0;
    align-items: center;
    flex-direction: column;
}
.logo {
    width: 140px;
    margin-bottom: 15px;
}
.header .wrap-lang {
    display: flex;
    align-items: center;
}
.header .wrap-lang .lang {
    width: 24px;
    height: 24px;
}
.header .wrap-lang a {
    margin: 0px 5px;
}
.header .wrap-lang a.active {
    width: auto;
    height: auto;
    padding: 1px;
    display: flex;
    border-radius: 16px;
    border: 2px solid #ec971b;
}
.login-form {
    width: 100%;
    padding: 8%;
    display: flex;
    flex-direction: column;
}
.login-form label.title {
    color: #ec971b;
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.btn-login{
    text-transform: uppercase;
}
.login-form input {
    width: 100%;
    color: #FFF;
    font-size: 1em;
    border-width: 0px;
    padding: 8px 15px;
    border-radius: 1.5em;
    background-color: #1e2021;
}
.login-form .wrap-subtitle {
    display: flex;
}
.login-form label.subtitle {
    color: #FFF;
    font-size: 0.9em;
    margin-left: 30px;
    margin-bottom: 0px;
}
.login-form a {
    text-align: center;
}
.login-form a label {
    color: #FFF;
    font-size: 0.9em;
}
.login-form button {
    width: 100%;
    color: #FFF;
    font-size: 1em;
    border: 1px;
    padding: 8px 0px;
    border-radius: 1.5em;
    background-color: #ec971b;
    margin-bottom: 10px;
}

.round {
    position: relative;
}
  
.round label {
    background-color: #1e2021;
    border: 1px solid #ec971b;
    border-radius: 50%;
    cursor: pointer;
    height: 20px;
    left: 0;
    position: absolute;
    top: 0;
    width: 20px;
    margin-bottom: 0px;
}
  
.round label:after {
    border: 2px solid #1e2021;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 4px;
    opacity: 0;
    position: absolute;
    top: 5px;
    transform: rotate(-45deg);
    width: 10px;
}
  
.round input[type="checkbox"] {
    visibility: hidden;
}
  
.round input[type="checkbox"]:checked + label {
    background-color: #ec971b;
    border-color: #ec971b;
}
  
.round input[type="checkbox"]:checked + label:after {
    opacity: 1;
}
.wrap-desktop {
    width: 150px;
    height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    border-radius: 35px;
    flex-direction: column;
    justify-content: center;
    background-color: #ec971b;
}
.wrap-desktop img {
    width: 30px;
    filter: #FFF;
    margin-bottom: 5px;
}
.wrap-desktop label {
    color: #FFF;
    font-size: 0.8em;
    margin-bottom: 0px;
    text-align: center;
}
.loading {
    height: 100%;
    z-index: 1001;
    position: fixed;
    margin: auto;
    left: 0;
    top: 0;
    width: 100%;
    display: none
}

.loading::before {
    content: '';
    position: inherit;
    top: 50%;
    transform: translateX(-50%);
    left: 50%;
    width: 48px;
    height: 48px;
    background: url(../../images/va2888/loading.gif) no-repeat;
    background-size: contain;
}
.login-form .form-group{
    margin-bottom: 20px;
}
.code{
    color: #ccc;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    padding: 4px 5px;
    font-weight: 600;
    font-size: 1.2rem;
}