html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  background-color: #c0c0c0;
}

.wider-logo > img {
  margin-bottom: 35px;
  width: 200px;
}

#authForm__localeSelect {
  /* hide FF and WebKit default select arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  margin-bottom: 30px;
  font-size: 16px;
  border: 1px solid black;
  border-radius: 3px;
  background-color: transparent;
  padding: 5px 10px;
}
/* hide IE default select arrow */
#authForm__localeSelect::-ms-expand {
  display: none;
}
html:not([dir]) #authForm__localeSelect {
  padding-right: 32px;
}
html[dir="rtl"] #authForm__localeSelect {
  padding-left: 32px;
}
#authForm__localeSelectLabel:after {
  font-family: "fontello";
  content: '\e800';
  display: inline-block;
  width: 30px;
  color: #000;
  background-color: #c0c0c0;
  pointer-events: none; /* let the click pass trough */
}
html:not([dir]) #authForm__localeSelectLabel:after {
  margin-left: -32px;   /* remove the :after space */
}
html[dir="rtl"] #authForm__localeSelectLabel:after {
  margin-right: -32px;   /* remove the :after space */
}

.authForm__panel {
  margin-top: 60px;
  text-align: center;
}
.authForm__header {
  margin-bottom: 30px;
  font-size: 22px;
  color: #232323;
  font-weight: bold;
  text-align: center;
}

.authLink__box {
  display: block;
  margin: 30px auto 50px;
  padding: 25px 20px;
  width: 300px;
  text-decoration: none;
  background-color: white;
  border: 4px solid white;
  border-radius: 6px;
}
.authLink__box:hover {
  border-color: #eb6730;
}
.authLink__icon {
  margin: 10px;
  height: 70px;
  text-align: center;
  vertical-align: bottom;
  background-repeat: no-repeat;
  background-position: center;
}
.authLink__label {
  margin: 0 0 15px 0;
  font-size: larger;
  font-weight: bold;
  color: #154c6f;
}
.authLink__description {
  color: black;
}

/*-------------dtx button------------------*/
.dtx-button {
  display: inline-block;
  padding: 7px 20px 9px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  border: none;
  outline: none;
  border-radius: 4px;
}

/*-------------Primary Button--------------*/
.dtx-button.button-primary {
  background-color: #094367;
}

.dtx-button.button-primary:hover {
  background-color: #1e5476;
}

.dtx-button.button-primary:focus {
  background-color: #1e5476;
  border: solid 2px #052c44;
}

.dtx-button.button-primary:disabled {
  background-color: rgba(29, 76, 105, 0.8);
}

/*-------------Reject Button--------------*/
.dtx-button.button-reject {
  background-color: #c70808;
}

.dtx-button.button-reject:hover {
  background-color: #770303;
}

.dtx-button.button-reject:focus {
  border: solid 2px #690202;
}

.dtx-button.button-reject:disabled {
  background-color: #612929cc;
}

#message {
  margin: 100px auto 0 auto;
  color: black;
  width: 90%;
}

#userSelection {
  width: 300px;
  margin: 0 auto;
  margin-top: 70px;
  padding: 40px;
  background-color: white;
  font-size: 16px;
  text-align: center;
  -webkit-box-shadow: 0px 10px 50px 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 10px 50px 2px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 10px 50px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 50px 2px rgba(0, 0, 0, 0.15);
  -moz-border-radius: 4px 4px 0px 0px;
  -webkit-border-radius: 4px 4px 0px 0px;
  -o-border-radius: 4px 4px 0px 0px;
}

#userSelection .form-section {
  color: #2f353e;
  overflow: auto;
  padding: 15px;
  margin: 20px 0;
  width: 100%;
  background: url("/auth/images/select-arrow.png") no-repeat right #fff;
  -webkit-appearance: none;
}

#form-section-title {
  color: #444;
}

#userSelection .dtx-button {
  width: 100%;
  padding: 15px;
}

#userSelection .form-section h3 {
  font-size: 18px;
}

#userSelection.form-section h4 {
  font-size: 14px;
}

#delegationMessage {
  width: 300px;
  margin: 0 auto;
  /* margin-top: 70px; */
  padding: 40px;
  background-color: #e8e9ea;
  font-size: 14px;
  text-align: left;
  -webkit-box-shadow: 0px 10px 50px 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 10px 50px 2px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 10px 50px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 50px 2px rgba(0, 0, 0, 0.15);
  -moz-border-radius: 0px 0px 4px 4px;
  -webkit-border-radius: 0px 0px 4px 4px;
  -o-border-radius: 0px 0px 4px 4px;
}
