html {
  font-size: 14px;
  font-family: "Inter Bold", sans-serif;
  background: #fff;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.w-150px {
    width: 150px!important;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    background: none!important;
    margin-bottom: 60px;
}

.w-100 {
    width: 100%!important;
}

.loginBtn {
    background: #004b7a;
    color: #fff;
    font-weight: 700;
    padding: 10px 15px 10px 15px;
    border: 0!important;
}
.sendBtn {
    background: #004b7a !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 10px 15px 10px 15px !important;
    border: 0 !important!important;
}
.logoutBtn {
    background: #E7F3FB !important;
    color: #004b7a !important;
    padding: 10px 15px 10px 15px !important;
    border: 0 !important!important;
}

.input-group {
    display: block !important;
    padding-bottom: 10px !important;
}

label {
    display: block;
    color: #1B1B1A;
    font-size: 0.875rem;
    line-height: 1.3125rem;
    font-weight: 700;
    font-family: "Inter Bold", sans-serif;
    padding-bottom: 5px;
    padding-top: 5px;
}

input {
    border: 1px solid #000!important;
}
textarea {
    border: 1px solid #000 !important;
}
.rz-dropdown {
    border: 1px solid #000 !important;
}

#overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
    display: block;
}


    #overlay #text {
        position: absolute;
        top: 50%;
        left: 50%;
        font-size: 35px;
        color: white;
        transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
    }