body{
    background-color: red;
}
#auth-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100%;
	position: relative;
	flex: 1;
}
#auth-forms {
	display: flex;
	flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
}
#auth-forms > * {
	flex: 1;
	width: max-content;
	max-width: 100%;
    padding-top: 60px;
}
#auth-forms > .separator {display: none;}

.woocommerce .sign-in-form.login,
.woocommerce .sign-in-form.login, .woocommerce .sign-in-form.register.mylisting-register {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}


.sign-in-form h3 {
	font-size: var(--xxxlarge);
	font-weight: normal;
	margin-bottom: 89px;
    text-align: center;
}    

.woocommerce form.sign-in-form .form-group input {
	border: 1px solid var(--light-gray);
	border-radius: 5px;
}
.woocommerce form.sign-in-form .form-group input::placeholder {
    font-size:var(--normal);
    font-weight: var(--weight-md);
    color:var(--dark-gray);
}

.woocommerce form.sign-in-form .form-content .form-group button, 
.woocommerce form.sign-in-form .form-content .form-group input,
.woocommerce form.sign-in-form .form-content .buttons {
    width: 100%;
	height: 55px;
    padding: 21px 15px;
}
.woocommerce form.sign-in-form .fields-wrapper .form-group{margin-bottom: 14px;}
    .woocommerce form.sign-in-form .fields-wrapper:last-child .form-group{margin-bottom: 0;}

.cts-social-login-wrapper p {
	text-align: center;
	line-height: 1;
	padding: 24px 0;
	margin: 0;
	font-size: var(--large);
}
.fields-wrapper .form-info {
    margin: 20px 0;
	width: 100%;
	display: flex;
	justify-content: center;
}
.fields-wrapper .forgot-password {
    margin:0;
    padding:0;
	text-align: right;
}


@media only screen and (min-width:900px){
    #auth-forms {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    #auth-forms > .separator {
        max-width: 1px;
        height: 750px;
        background: var(--light-gray);
        display: block;
        position: relative;
    }
}