.auth-page .container {
    padding-bottom: 100px;
}

.auth-page form {
    width: 500px;
    text-align: center;
    margin: 0 auto;
}

.auth-page input {
    width: 100%;
    text-align: center;
}

.auth-page .input-label {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: #fbc430;
    margin-top: 50px;
    margin-bottom: 15px;
}

.auth-page .submit-btn {
    margin: 65px auto 50px auto;
}

.auth-page .auth-links a {
    display: inline-block;
    margin: 0 5px;
}

.auth-page .registration-link {
    color: #fbc430;
    text-decoration: underline;
}

.auth-page .input-wrap {
    position: relative;
}

.auth-page .input-wrap:before {
    content: "";
    position: absolute;
    top: calc(50% - 30px);
    left: -27.5px;
    width: 55px;
    height: 60px;
}

.auth-page .input-wrap.name:before {
    background: url("../images/input-elems.png") center 10px no-repeat,
    url("../images/input-elem-bg.png") center no-repeat;
}

.auth-page .input-wrap.password:before {
    background: url("../images/input-elems.png") center calc(100% - 10px) no-repeat,
    url("../images/input-elem-bg.png") center no-repeat;
}

.auth-page .input-wrap.email:before {
    background: url("../images/input-elems.png") center no-repeat,
    url("../images/input-elem-bg.png") center no-repeat;
}

.auth-page .confirm-rules {
    font-size: 16px;
}

.auth-page .confirm-rules a {
    display: inline-block;
    color: #fbc430;
    text-decoration: underline;
    margin-left: 5px;
}

.auth-page .confirm-rules .checkbox-wrap {
    margin-right: 10px;
}