.auth {
	padding: 45px 0 65px;
}

.bx-title {
	margin: 25px 0;
	font-weight: normal;
font-size: 20px;
line-height: 26px;
text-transform: none;
}

.bx-authform-input-container input {
	width: 50%;
	background: #fff;
	padding: 0 13px;
	height: 50px;
	font-size: 16px;
line-height: 26px;
color: #7C7C7C;
border: 1px solid #DEDEDE;
margin-bottom: 0;
}
.auth-password .main-form input {
	width: 100%;
	margin-bottom: 0;
}
.bx-authform-input-container {
	margin-bottom: 20px;
}
.auth-password .bx-authform-input-container {
	margin-bottom: 5px;
}
.bx-authform-label-container {
	margin-bottom: 5px;
}

.bx-authform-link-container {
margin-top: 20PX;
}

.bx-authform-link-container a {
	font-size: 16px;
line-height: 30px;
color: #E7540C;
}
.bx-authform-link-container a:hover {
	text-decoration: underline;
}
.button-input.red-transparent{
	border: 2px solid var(--red);
    color: var(--red);
}
.button-input {
    border: 2px solid #fff;
    font-family: var(--regular-font);
    text-align: center;
    text-transform: uppercase;
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 11px 26px;
    overflow: hidden;
    position: relative;
    transition: all ease .3s;
    z-index: 0;
    cursor: pointer;
}
@media screen and (max-width: 1680px) {
.button-input {
    padding: 9px 20px;
}
}
.button-wrap {
	display: inline-block;
	position: relative;
	overflow: hidden;
}
.button-wrap:after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--red);
    top: 0;
    left: -100%;
    transition: ease .3s;
    z-index: -1;
}
.button-wrap:hover .button-input {
    color: #fff;
    border-color: var(--red);
}
.button-wrap:hover::after {
    left: 0;
}
.auth-password {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100;
    display: none;
}
.auth-password .main-form__submit {
	margin-top: 10px;
}
.auth-password  .login-label {
	display: block;
	margin-bottom: 10px;
}
.auth-password.active {
	display: block;
}

.bx-authform-formgroup-container .button:hover{
	color: var(--red);
	opacity: 0.8;
}
