.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow: auto;
    justify-content: center;
    align-items: center;
	z-index: 9999;
}

.popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}


.close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    color: #4B2B18;
    font-size: 27px;
    cursor: pointer;
	text-decoration: unset;
}

.close-btn:hover {
    color: #000;
}

.popup-title {
    font-size: 32px;
    font-weight: 400;
    color: #42200c;
    text-align: center;
    font-family: 'Playfair Display';
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
	font-weight: 500;
    color: #42200c;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ded8d0;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-button {
    width: 100%;
    padding: 17px;
    background-color: #fff;
    color: #42200C;
    border: 1px solid #42200C;
    border-radius: 5px;
    cursor: pointer;
	font-family: 'Switzer-Regular';
    font-size: 16px;
	text-transform: uppercase;
	font-weight: 500;
}

.form-button:hover {
    background-color: #42200C;
    color: #fff;
}

.reset-button {
    width: 100%;
    padding: 17px;
    background-color: #fff;
    color: #42200C;
    border: 1px solid #42200C;
    border-radius: 5px;
    cursor: pointer;
	font-family: 'Switzer-Regular';
    font-size: 16px;
	text-transform: uppercase;
	font-weight: 500;
}

.reset-button:hover {
    background-color: #42200C;
    color: #fff;
}

.proceed-without-login {
    display: none;
}

@media only screen and (max-width: 768px) {
	.proceed-without-login {
    display: block;
    }
}
	
.proceed-without-login {
    text-align: center;
    font-size: 14px;
    color: #42200c;
    margin-top: 20px;
}

.proceed-without-registration {
    display: none;
}

@media only screen and (max-width: 768px) {
	.proceed-without-registration {
    display: block;
    }
}

.proceed-without-registration {
    text-align: center;
    font-size: 14px;
    color: #0073aa;
    margin-top: 10px;
}

#back-to-login {
	width: 100%;
	font-weight: 600;
	font-family: 'Switzer-Regular';
}

#back-to-login:hover {
	text-decoration: underline;
}

.forgot-password {
    display: block;
    margin-top: -7px;
    text-align: center;
    font-size: 15px;
	font-weight: bold;
    color: #42200c;
	text-decoration: unset;
	font-family: 'Switzer-Regular';
}

.forgot-password:hover, .proceed-without-login:hover {
    text-decoration: unset;
}

.forgot-password:hover, .proceed-without-registration:hover {
    text-decoration: unset;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
	font-family: 'Switzer-Regular';
	color: #42200c;
}

.remember-forgot label {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
	font-weight: 400;
}

.remember-forgot input[type="checkbox"] {
    margin-right: 9px;
}

.toggle-link {
	font-family: 'Switzer-Regular';
    margin-top: 15px;
    text-align: center;
	font-weight: bold;
    font-size: 15px;
    color: #42200c;
    cursor: pointer;
	display: inline-block;
}

.toggle-link:hover {
    text-decoration: unset;
}

.tutor-form-container {
    display: none;
}

.tutor-form-container.active {
    display: block;
}

.error-message {
    color: red;
    font-size: 0.875em;
    display: block;
    margin-top: 5px;
}

.google {
  display: block!important;
  margin-left: auto!important;
  margin-right: auto!important;
  width: 50%!important;
}

.checkbox-input {
    display: none;
}

.checkbox-round {
    display: inline-block;
    width: 17px;
    height: 17px;
    border: 2px solid #42200c;
    border-radius: 0px;
    position: relative;
    margin-right: 9px;
    transition: background-color 0.3s;
}

.checkbox-input:checked + .checkbox-round {
    background-color: #42200c;
    position: relative;
}

.checkbox-input:checked + .checkbox-round::after {
    content: '';
    display: block;
    width: 11px;
    height: 11px;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M9 19l-7-7 1.41-1.41L9 16.17l13.59-13.59L24 5l-15 15z"/></svg>');
    background-size: contain;
    position: absolute;
    left: 1px;
    top: 1px;
}

.nsl-button-google {
	width: 169px;
	height: 40px;
}