#loginBody, .floor-disabled-messageWindow {
    padding-bottom: 20px;
    border-radius: 20px;
    min-width: 420px;
}
@media only screen and (max-width: 592px) {
#loginBody, .floor-disabled-messageWindow {
    min-width: 220px;
}
}
    
 /* modal logo  */
 #loginBodyLogo {
    max-width: 180px;
    margin: 8px auto 22px auto;
    display: block;
    padding: 0px !important;
    object-fit: contain;
    min-height: initial !important;
    user-select: none;
    transition: all 0.2s;
}
.fa-facebook-f{
    width: 10px;
}
.fa-x-twitter{
    width:16px;
    height:16.7px;
}
.fa-linkedin-in{
    width:15px;
}
.login-social-wrapper {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.login-social-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid whitesmoke;
    background-color: transparent;
    transition: background-color 0.3s;
}
.login-social-wrapper a:hover {
    text-decoration: none;
    background-color: rgba(138, 138, 138, 0.5);
} 
.login-social-wrapper a i {
    padding: 0px !important;
    font-size: 16px !important;
}
#loginForm {
    padding-top: 8px;
}
#loginForm .loginInput {
    border: 2px solid #f0f0f0;
    border-radius: 10px !important;
    height: 54px;
    background-color: whitesmoke !important;
    font-size: 16px;
    margin: 0px;
    letter-spacing: 0.4px;
}
#loginForm .loginInput:focus,
.login-support-btn a:focus,
.login-social-wrapper a:focus {
    border-color:#59acff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none !important;
}
#info {
    max-width: initial;
    flex-basis: initial;
    margin-top: 12px;
}
.loginBody-wrapper {
    position: relative;
}
/* // social media  */
.login-social-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid whitesmoke;
    background-color: transparent;
    transition: background-color 0.3s;
}
.login-social-wrapper a:hover {
    text-decoration: none;
    background-color: rgba(138, 138, 138, 0.5);
} 
.login-social-wrapper a i {
    padding: 0px !important;
    font-size: 16px !important;
}
 /* buttons  */
 .btn-expoSubmit {
    background: #63afe2 !important;
    text-transform: initial;
    opacity: 1;
    font-size: 18px !important;
    border-radius: 10px !important;
    padding: 0px !important;
    height: 54px;
    margin-bottom: 24px;
    position: relative;
    letter-spacing: 0.2px;
    font-weight: bold;
    color: white;
    transition: all 0.3s;
    margin-top:20px;
}
.btn-expoSubmit:hover {
    background-color: #5590be !important;
    color: white;
}
.btn-expoSubmit:hover i {
    transform: translateX(12px);
    color: white;
}
.btn-expoSubmit:focus {
    outline: 4px solid #2384e5 !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
}
.btn-expoSubmit i {
    position: absolute;
    right: 30px;
    top: 17px;
    font-size: 20px;
    transition: all 0.3s;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    body div:not(.switch) input[type=checkbox] {
      --active: #275EFE;
      --active-inner: #fff !important;
      --focus: 2px rgba(39, 94, 254, .3);
      --border: #989cb0;
      --border-hover: #275EFE;
      --background: #fff !important;
      --disabled: #F6F8FF !important;
      --disabled-inner: #E1E6F9 !important;
      -webkit-appearance: none;
      -moz-appearance: none;
      
      height: 21px;
      outline: none;
      display: inline-block;
      vertical-align: top;
      position: relative;
      margin: 0;
      margin-right: 2px;
      margin-bottom: 3px;
      cursor: pointer;
      border: 1px solid var(--bc, var(--border));
      background: var(--b, var(--background));
      transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }
    body div:not(.switch) input[type=checkbox]:after {
      content: "";
      display: block;
      left: 0;
      top: 0;
      position: absolute;
      transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }
    body div:not(.switch) input[type=checkbox]:checked {
      --b: var(--active);
      --bc: var(--active);
      --d-o: .3s;
      --d-t: .6s;
      --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }
    body div:not(.switch) input[type=checkbox]:disabled {
      --b: var(--disabled);
      cursor: not-allowed;
      opacity: 0.9;
    }
    body div:not(.switch) input[type=checkbox]:disabled:checked {
      --b: var(--disabled-inner);
      --bc: var(--border);
    }
    body div:not(.switch) input[type=checkbox]:disabled + label {
      cursor: not-allowed;
    }
    body div:not(.switch) input[type=checkbox]:hover:not(:checked):not(:disabled) {
      --bc: var(--border-hover);
    }
    body div:not(.switch) input[type=checkbox]:focus {
      box-shadow: 0 0 0 var(--focus);
    }
    body div:not(.switch) input[type=checkbox]:not(.switch) {
      width: 21px;
      min-width: 21px;
    }
    body div:not(.switch) input[type=checkbox]:not(.switch):after {
      opacity: var(--o, 0);
    }
    body div:not(.switch) input[type=checkbox]:not(.switch):checked {
      --o: 1;
    }
    body div:not(.switch) input[type=checkbox] + label {
      display: inline-block;
      vertical-align: middle;
      cursor: pointer;
      margin-left: 2px;
        /* padding-top:2px; */
        line-height: 23px;
    }

    body div:not(.switch) input[type=checkbox]:not(.switch) {
      border-radius: 4px;
    }
    body div:not(.switch) input[type=checkbox]:not(.switch):after {
      width: 5px;
      height: 9px;
      border: 2px solid var(--active-inner);
      border-top: 0;
      border-left: 0;
      left: 7px;
      top: 4px;
      transform: rotate(var(--r, 20deg));
    }
    body div:not(.switch) input[type=checkbox]:not(.switch):checked {
      --r: 43deg;
    }
  }
  .attCatsBox{
    border-radius: 10px !important;
    background-color: whitesmoke !important;
    font-size: 16px;
  }
  #categories label{
    font-size: 14px !important;
    font-weight: 400;
  }
  .sign-up-title i{
    margin-right:20px;
  }