html {
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll !important;
}

body {
    height: 100%;
    padding-right: 0 !important;
    text-align: center;
    background-color: #f8fafb;
    color: #212529;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
}

p {
    color: #b3b3b3;
}

.wrapper {
    min-height: 100%;
    padding: 30px 0;
}

.login-wrap .form-group {
    position: relative;
}

.login-wrap .form-group input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding: 0;
}

.login-wrap .form-group input:focus {
    outline: none;
    background-color: transparent;
}

.login-wrap .form-group.field--not-empty label,
.login-wrap .form-group.field--not-empty label {
    margin-top: -25px;
}

.login-wrap .form-group label {
    color: #b3b3b3;
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
    pointer-events: none;
}

.login-wrap .form-control:active, 
.login-wrap .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none; 
}

.login-wrap .btn-primary {
    height: 54px;
    background-color: #38d39f;
    border-color: #38d39f;
}

.login-wrap .btn-primary:hover {
    background-color: #29bb8a;
    border-color: #29bb8a;
}

.login-wrap .control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
}

.login-wrap .control .caption {
    position: relative;
    top: .2rem;
    color: #888;
}

.login-wrap .control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.login-wrap .control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
    border-radius: 4px;
}

.login-wrap .control--radio .control__indicator {
    border-radius: 50%;
}

.login-wrap .control:hover input~.control__indicator,
.login-wrap .control input:focus~.control__indicator {
    background: #ccc;
}

.login-wrap .control input:checked~.control__indicator {
    background: #38d39f;
}

.login-wrap .control:hover input:not([disabled]):checked~.control__indicator,
.login-wrap .control input:checked:focus~.control__indicator {
    background: #4dd8a9;
}

.login-wrap .control input:disabled~.control__indicator {
    background: #e6e6e6;
    opacity: 0.9;
    pointer-events: none;
}

.login-wrap .control__indicator:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    display: none;
    font-size: 14px;
    font-weight: 900;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.login-wrap .control input:checked~.control__indicator:before {
    display: inline-block;
    color: #fff;
}

.login-wrap .control--checkbox .control__indicator:before {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.login-wrap .control--checkbox input:disabled~.control__indicator:before {
    border-color: #7b7b7b;
}

.login-wrap .control--checkbox input:disabled:checked~.control__indicator {
    background-color: #7e0cf5;
    opacity: .2;
}