#account_login_form_wrapper , #account_register_form_wrapper , #account_profile_form_wrapper{
    display: none;
}
#websima-auth-modal .form-row {
    margin: 0 0 15px 0;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}
#websima-auth-modal .form-row.buttons-wrapper{
	justify-content:center;
	position: relative;
}
.form-row>.col, .form-row>[class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
}
#websima-auth-modal form .form-description,
#websima-auth-modal form .form-text,
#websima-auth-modal form label:not(.error) {
    display: block;
    text-align: right;
    margin: 0 0 5px 0;
}
#websima-auth-modal form input {
     border: 1px solid #fafafa;
	 background: #fafafa;
	 padding:10px 20px;
	 border-radius: 15px;
	 height: 50px;
	 display: block;
	 box-sizing: border-box;
	 font-family: inherit;
	 width: 100%;
	 transition: 0.3s;
	 font-size: 14px;
	 margin-bottom:10px;
}
#websima-auth-modal form input#mobile::placeholder {
    direction: ltr;
}

#websima-auth-modal form button {
    background:#fff;
    min-width: 120px;
    height: 38px;
	color:var(--color1)
}

#websima-auth-modal form button:hover:after{
	background:var(--color2)
}
#websima-auth-modal form label.error {
    color: var(--danger);
    font-size: 12px;
    position: absolute;
    right: 0;
	bottom: -15px;
}
#websima-auth-modal .resend_code_wrapper span.resend-code:not(.disable) {
    cursor: pointer;
}
#websima-auth-modal .resend_code_wrapper {
display: flex;
  width: 100%;
  text-align: right;
  position: absolute;
  bottom: -27px;
  font-size: 13px;
  justify-content: space-between;
  align-items: center;
  color: #7e7e7e;
}
.resend-code {
  color: red;
}
#websima-auth-modal .alert {
    background-color: var(--color1)!important;
    text-align: center;
    font-size: 13px;
    color: #fff;
    border-radius: 0;
    margin: -2px 0;
}
#websima-auth-modal .modal-dialog{
	 background-color: var(--color1);
} 

.exit-account {
    position: absolute;
    left: 0;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
    top: 100%;
    background: #fff;
    z-index: 3;
    border-radius: 0 0 3px 3px;
    padding: 4px 10px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    width: 53px;
}    
.head_account:hover .exit-account{
	opacity:1;
	visibility:visible;
}
.login-menu {
    position: absolute;
    background: #fff;
    width: 120px;
    left: 0;
    z-index: 2;
    padding: 10px;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(60px) scale(.9);
    transform-origin: right top;
    transition: 0.4s ease;
    pointer-events: none;

}
.login-menu > a {
     display: flex;
     align-items: center;
     gap: 5px;
    position: relative;
}
.login-menu > a:not(:last-child) {
    padding-bottom: 10px;
}
.login-menu > a:not(:last-child):after {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--color1);
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
}
.login-menu > a  i {
    font-size: 16px;
}
.head_account:hover .login-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
button[disabled] {
    pointer-events: none;
    opacity: 0.7;
}
.form-text {
    font-size: 13px;
    color: #7e7e7e;
    line-height: 1.5;
}