/*General wrap*/
.page_content_wrap {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.tutor-login-wrap,
#tutor-registration-wrap {
    max-width: 500px;
    margin: 0 auto;
    border: 3px solid var(--e-global-color-primary);
    border-radius: 30px;
}

.tutor-login-form-wrapper,
#tutor-registration-wrap {
    padding: 3rem;
}

.tutor-login-form-wrapper .tutor-fs-5.tutor-color-black.tutor-mb-32 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 300;
    color: var(--e-global-color-primary);
}

/* Login Inputs */
input.tutor-form-control.fill_inited {
    width: 100%;
    margin-bottom: 15px;
}

/* Register Inputs */
#tutor-registration-wrap .tutor-form-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 1rem;
}

#tutor-registration-wrap .tutor-form-group input[type=text] {
	margin-bottom: 0 !important;
}

.tutor-option-field-row label, .tutor-form-group label {
    margin-bottom: 0;
}

/*ERROR MESSAGES*/
ul.tutor-required-fields {
    color: red;
    list-style: decimal-leading-zero;
    font-size: 0.9rem;
}

/*SUCCESS MESSAGE*/
.gcs-registration-success {
    background: #eaf7ef;
    border: 1px solid #b7e0c2;
    color: #225c35;
    padding: 16px 18px;
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.5;
}

.gcs-registration-success strong {
    display: block;
    font-size: 17px;
    margin-bottom: 6px;
}

.gcs-registration-success p {
    margin: 0;
}

#tutor-registration-wrap .tutor-form-group input.fill_inited,
#tutor-registration-wrap .tutor-form-wrap,
.tutor-password-strength-checker {
	width:100%;
}

#tutor-registration-wrap input::placeholder {
    opacity: 0 !important;
}

/*Keep me signed in + Forgot Password? row*/
.tutor-d-flex.tutor-justify-between.tutor-align-center.tutor-mb-40{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-between;
    align-items: center;
}

/*Register link*/
.tutor-text-center.tutor-fs-6.tutor-color-secondary.tutor-mt-20 {
	margin-top:2rem;
    text-align: center;
}

.tutor-text-center.tutor-fs-6.tutor-color-secondary.tutor-mt-20 a {
	color: var(--e-global-color-61c01e98);
}

.tutor-text-center.tutor-fs-6.tutor-color-secondary.tutor-mt-20 a:hover {
	color: var(--e-global-color-69bf31ed);
}

/*Login Button*/
button.tutor-btn.tutor-btn-primary.tutor-btn-block {
    padding: 15px 25px;
    border-radius: 30px;
    margin: 1rem 0;
}

/*Register page, intro message*/
body.page-id-36964 .gcs-register-intro {
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
}

body.page-id-36964 .gcs-register-intro h2 {
    margin: 0 0 0.35rem;
    color: var(--e-global-color-primary);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}

body.page-id-36964 .gcs-register-intro p {
    margin: 0;
    color: var(--e-global-color-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* SHOW-HIDE PASSWORD ICON - CUSTOM */
body.page-id-36964 .tutor-password-field {
    position: relative;
}

body.page-id-36964 .tutor-password-field input {
    padding-right: 48px !important;
}

body.page-id-36964 .gcs-password-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 14px;
    bottom: 15px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 20;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    font-size: 0 !important;
}

/* Eye */
body.page-id-36964 .gcs-password-toggle::before {
    content: "\f06e";
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
    color: var(--e-global-color-secondary);
    pointer-events: none;
}

/* Eye slash */
body.page-id-36964 .gcs-password-toggle.is-visible::before {
    content: "\f070";
}

/*GDPR checkbox*/
body.page-id-36964 .gcs-gdpr-consent {
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--e-global-color-text);
}

body.page-id-36964 .gcs-gdpr-consent label {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    line-height: 1.45;
}

body.page-id-36964 .gcs-gdpr-consent input {
    margin-top: 0.25rem;
}

body.page-id-36964 .gcs-gdpr-consent a {
    color: var(--e-global-color-primary);
    text-decoration: none;
}

body.page-id-36964 .gcs-gdpr-consent a:hover {
    color: var(--e-global-color-accent);
}

.menu-item-icon.icon-users-2 {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
}

.menu-item-icon.icon-users-2::before {
    content: "\f007" !important; /* user icon */
}

/*RESPONSIVENESS*/

/*General wrap*/
@media (max-width: 400px) {
	
	.page_content_wrap {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
	
	.tutor-login-form-wrapper,
	#tutor-registration-wrap {
		padding: 2rem;
	}

}



