body {
  font-family: Calibri, Candara, Segoe, Segoe UI, Optima, Arial, sans-serif;
  width: 100%;
  padding: 0px;
  margin: 0px;
  background: #333333;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none !important;
  cursor: pointer;
}
h1,
h2 {
  margin: 0px;
}
#loginForm {
  width: 536px;
  margin: 0 auto;
  padding-top: 90px;
  color: #ffffff;
}
#loginForm form {
  background: #00A99D;
  padding: 36px 63px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
  margin-bottom: 27px;
}
#loginForm form .formLine {
  position: relative;
}
#loginForm form .formLine .fa-user {
  position: absolute;
  bottom: 9px;
  left: 1px;
}
#loginForm form .formLine .fa-unlock-alt {
  position: absolute;
  bottom: 9px;
  left: 1px;
}
#loginForm form .formLine .fa-angle-down {
  position: absolute;
  bottom: 9px;
  right: 1px;
}
#loginForm form .btSubmit {
  width: 169px;
  background: #ffffff;
  color: #00A99D;
  margin: 36px auto 0 auto;
  padding: 9px 0;
  font-weight: bold;
  font-size: 1.2em;
  -webkit-border-radius: 27px;
  -moz-border-radius: 27px;
  border-radius: 27px;
}
#loginForm label {
  font-weight: bold;
}
#loginForm .container .logo {
  width: 318px;
  display: block;
  margin: 0 auto;
}
#loginForm .container h1 {
  font-size: 1.4em;
  color: #ffffff;
  display: block;
  text-align: center;
  padding: 27px 0;
}
#loginForm input,
#loginForm label,
#loginForm select {
    display: block;
    width: 100%;
    border: none;
    border-bottom: solid 1px #ffffff;
    color: #fff;
    background: #00A99D;
    margin-bottom: 18px;
    padding-left: 27px;
}

#loginForm label {
    margin-bottom: 9px;
    border-bottom: none;
    padding-left: 0px;
}

#loginForm select::-ms-expand {
    display: none;
}

#loginForm select {
    display: none;
}

/*the container must be positioned relative:*/
.custom-select {
    position: relative;
    background: none;
    border: none;
    padding: 0px;
    top: -3px;
}

    .custom-select select {
        display: none;
    }

.select-selected {
    background-color: #00A99D;
    border-bottom: solid 1px #ffffff !important;
}
    /*style the arrow inside the select element:*/
    .select-selected:after {
        position: absolute;
        content: "";
        top: 14px;
        right: 10px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-color: #fff transparent transparent transparent;
        display: none;
    }
    /*point the arrow upwards when the select box is open (active):*/
    .select-selected.select-arrow-active:after {
        border-color: transparent transparent #fff transparent;
        top: 7px;
    }
/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
    color: #ffffff;
    padding: 3px 27px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}
/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #00A99D;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}
/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}
