form.ajax-auth {
    display: none;
    z-index: 99999;
	position: fixed;
    top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
    padding: 28px;
    max-width: 486px;
    width: 100%;
}

form.ajax-auth .ajax-auth__body {
    padding: 42px 30px 40px 30px;
	background-color: #00172b;
    border-radius: 5px;
    border: 1px solid #42E8E0;
    box-shadow: 0px 0px 10px 5px rgba(66, 232, 224, 0.2);
    font-family: 'Cabin', sans-serif;
	font-size: 18px;
	line-height: 166.69%;
    position: relative;
    overflow: auto;
}

.ajax-auth__header {
    margin-bottom: 16px;
}

.ajax-auth__header .ajax-auth__title {
    font-size: 28px;
    color: #42e8e0;
    text-align: center;
    margin-bottom: 40px;
}

.ajax-auth__wrapper:not(:last-of-type) {
    margin-bottom: 20px;
}

.ajax-auth__forgot {
    display: inline-block;
    margin: -4px 0 40px;
}

.ajax-auth__btn {
    width: 100% !important;
}

.ajax-auth__bottom {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.ajax-auth__bottom .ajax-auth__right {
    color: #42e8e0;
    text-decoration-line: underline;
}
 
.ajax-auth label.error {
	display: none !important;
}
 
.ajax-auth input.error {
	border: 1px solid #FF0000 !important;
}
 
.ajax-auth .ajax-auth__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-left: auto;
}

.ajax-auth .ajax-auth__close::before,
.ajax-auth .ajax-auth__close::after {
    content: '';
    display: block;
    width: 12px;
    height: 1.5px;
    border-radius: 5px;
    background-color: #42e8e0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -0.75px;
    margin-left: -6px;
}

.ajax-auth .ajax-auth__close::before {
    transform: rotate(45deg);
}

.ajax-auth .ajax-auth__close::after {
    transform: rotate(-45deg);
}
 
.ajax-auth p.status {
    text-align: center;
    margin: -15px 0 20px 0;
    display: none;
}
 
.auth-overlay {
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,.5);
    position: fixed;
    z-index: 99998;
}

.ajax-auth .forgot__btn {
    margin-top: 30px;
}

.ajax-auth input {
    width: 100%;
    background-color: transparent;
    border: 1px solid #42e8e0;
    border-radius: 10px;
    padding: 5px 24px;
    font-family: "Cabin", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 166.69%;
    color: #42e8e0;
}
  
.ajax-auth input::-webkit-input-placeholder {
    color: rgba(66, 232, 224, 0.1);
}

.ajax-auth input::-moz-placeholder {
    color: rgba(66, 232, 224, 0.1);
}

.ajax-auth input:-ms-input-placeholder {
    color: rgba(66, 232, 224, 0.1);
}

.ajax-auth input::-ms-input-placeholder {
    color: rgba(66, 232, 224, 0.1);
}

.ajax-auth input::placeholder {
color: rgba(66, 232, 224, 0.1);
}

@media screen and (max-width: 575.98px) {
    form.ajax-auth .ajax-auth__body {
        padding: 40px 20px;
        font-size: 14px;
    }
    .ajax-auth__header .ajax-auth__title {
        font-size: 22px;
    }
    .ajax-auth input {
        font-size: 14px;
    }
}