.modal-auth-wrapper {
    top: 50%;
	left: 50%;
	width: 450px;
	margin-left: -200px;
    padding: 38px 24px;
	background-color: #fff;
    color: rgba(78, 78, 76, 1);
    position: relative;
    z-index: 999;
    transform: translateY(-50%);
    border-radius: 30px;
}
.modal-auth {
    display: none;
    z-index: 998;
	position: fixed;
    height: 100%;
    top: 0;
    width: 100%;
    left: 0;
}
.auth-overlay {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #00000088;
    
}
.modal-auth form {
    display: grid;
}
.modal-auth h3{
    text-align: center;
    margin: 0;
    margin-bottom: 16px;
}
.modal-auth input {
    width: 100%;
    border-radius: 47px;
    outline: none;
    border: 1px solid #12A537;
    font-size: 15px;
    /* color: #4E4E4C; */
    padding: 8px 25px 8px 16px;
    margin-bottom: 16px;
}
.modal-auth input.btn:hover {
    cursor: pointer;
}
.lable-for-password {
    text-align: right;
}
.modal-auth label.error {
	display: none !important;
}
.modal-auth input.error {
	border: 1px solid #FF0000 !important;
}
.modal-auth a.form-link {
    color: #12A537;
    text-decoration: underline;
}
.modal-auth .close {
    position: absolute;
    right: 15px;
    top: 15px;
}
.modal-auth p.status{
    text-align: center;
	font-weight: 600;
    display: none;
}