
/* BEGIN SIGN IN PAGE FORMATTING*/
/*setting up the body font and background gradient*/
#signin__background {
  height: 100vh;
  background: #3A64A0 no-repeat; /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(#3A64A0, #001753) no-repeat; /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#3A64A0, #001753) no-repeat; /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#3A64A0, #001753) no-repeat; /* For Firefox 3.6 to 15 */
  background: linear-gradient(#3A64A0, #001753) no-repeat; /* Standard syntax */
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
}

/*placement of form-box*/
.signin__l-col-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.signin__l-col {
  width: 50%;
  max-width: 50%;
}
.signin__error-message {
  color: red;
  margin: 1em 0;
}

/*button for sign in*/
.signin__button {
  border: 0;
  font-size: 1em;
  color: #ffffff;
  background-color: #537db9;
  border-radius: 0.25em;
  padding: 1em;
  width: 30%;
  margin: 3em 0 1em 0em;
}
.signin__button:hover, .signin__button:focus {
  background-color: rgb(255, 165, 0);
  color: #ffffff;
  transition: .5s;
}

/* Form box*/
.signin__form-box {
  width: 90%;
  max-width: 75em;
  background-color: rgba(255, 255, 255, 0.6);
  border-bottom: 1em;
  overflow: hidden;
  margin: 8em auto;
  box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.77);
  border-radius: 1em;
}
.signin__form {
  padding: 2em;
}
.signin__content {
  background-color: #537db9;
  padding: 2em;
}
.signin__title {
  font-weight: bold;
  font-size: 2.5em;
  color: #ffffff;
  margin-top: 0;
  /*text-transform: uppercase;*/
  letter-spacing: .05em;
  text-align: center;
  padding-top: 1vh;
}
.signin__broker {
  font-size: 1em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ffffff;
  margin-top: 0;
  letter-spacing: .05em;
  text-align: left;
  padding-top: 1vh;
}
.signin__disclaimer {
  font-size: .75em;
  color: #505050;
  margin-top: 0;
  letter-spacing: .05em;
  text-align: center;
  padding: 1em 5em 0;
}

/*form boxes*/
.signin__field {
  -webkit-appearance: none;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
  width: 100%;
  font-size: .75em;
  padding-left: .75em;
  border: 0;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  height: 3em;
  margin: .5em 0 2em;
}
.signin__field:focus {
  outline: 0;
  border-color: rgba(255, 255, 255, 0.5);
}

input.signin__field {
  color: #505050;
}

input.signin__field::placeholder {
  color: #505050;
}

.signin__form-button {
  text-align: center;
}

.signin__field-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../i/select-dropdown.png");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 1em auto;
  width: 100%;
  font-size: .75em;
  padding-left: .75em;
  border: 0;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  height: 3em;
  margin: .5em 0 2em;
  color: #505050;
  width: 100%;
  height: 3.4em;
}

/* the link in the disclaimer*/
.signin__license-link {
  color: #537db9;
  text-decoration: none;
}
.signin__license-link:hover {
  color: #ffffff;
  transition: .5s;
}

/* company logo setting */
.signin__logo {
  display: block;
  margin-top: 6vh;
  margin-bottom: 2vh;
  margin-left: auto;
  margin-right: auto;
  width: 95%;
}

/* Skins */
.signin__form-error-text-color {
  color: #FF0000;
}

/* Remove default dropdown icon in Internet Explorer */
select::-ms-expand {
    display: none;
}

/* END SIGN IN PAGE FORMATTING*/
