/*normalize*/
@font-face {
  font-family: 'meetings-plus-icons';
  src: url('/fonts/meetings-plus-icons.woff?-26pwri') format('woff'), url('/fonts/meetings-plus-icons.ttf?-26pwri') format('truetype'), url('/fonts/meetings-plus-icons.eot?-26pwri') format('embedded-opentype'), url('/fonts/meetings-plus-icons.svg?-26pwri#meetings-plus-icons') format('svg');
  font-weight: normal;
  font-style: normal;
}
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* 2 */
}
html,
body {
  margin: 0;
  height: 100%;
}
[hidden],
template {
  display: none;
}
::-ms-clear {
  display: none;
}
:-ms-input-placeholder {
  color: #aaaaaa;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  outline: none;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  border: 0 none;
  border-radius: 3px;
  height: 40px;
  font-size: 14px;
  font-weight: bold;
  color: #515151;
}
input[type="text"],
input[type="password"] {
  outline: 1px solid inset;
}
/*  layout
    --------------
*/
body {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
}
.forgot-pass a::after,
.close::before,
.input-name::after,
.input-pass::after,
.input-deviceid::after {
  font-family: 'meetings-plus-icons';
}
.site-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #009fe3;
  /* Old browsers */
}
/*
    In IE 10-11, flex items ignore their parent container’s height if it’s set via the min-height property.
    But we need to set the heigth via min-height in order to make gradient took over the whole page on mobile phones.
    This is a fix for viewports of size 320x256 px (meets WCAG 2.1).
*/
@media only screen and (max-width: 767px) {
  .site-wrap {
    min-height: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .site-wrap {
    height: 100%;
  }
}
.main-wrap {
  flex: 1 0 auto;
}
.close {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 20px;
  opacity: 0.9;
  text-decoration: none;
}
.close:hover {
  opacity: 1;
}
.close::before {
  content: "\e605";
  color: #fff;
  font-size: 30px;
  line-height: 1.5;
  position: relative;
  left: 5px;
}
.content-wrap {
  width: 280px;
  margin: 0 auto;
}
.footer-background {
  height: 100%;
  background: #2c3c43;
}
.footer {
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media only screen and (max-height: 800px) {
  .section-login .logo {
    padding: 40px 0;
    background: url("../../img/organization-logo.png") center no-repeat;
    height: 70px;
  }
}
@media only screen and (min-height: 801px) {
  .section-login .logo {
    padding: 130px 0;
    background: url("../../img/organization-logo.png") center no-repeat;
    height: 70px;
  }
}
/*  forms
    --------------------------
*/
.form-box {
  margin-bottom: 2em;
}
.form-field {
  margin-bottom: 10px;
  position: relative;
}
.form-field label {
  display: none;
}
.form-field input {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #ffffff;
  padding: 0 40px 0 10px;
}
.form-field input:-webkit-autofill {
  color: #416b8a !important;
  background-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px white inset;
}
.validation {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #fff;
}
.input-name::before,
.input-name::after,
.input-deviceid::before,
.input-deviceid::after,
.input-pass::before,
.input-pass::after {
  content: "";
  display: block;
  position: absolute;
  height: 40px;
  width: 40px;
  right: 0;
  top: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.input-deviceid::before,
.input-name::before,
.input-pass::before {
  background-color: #eaf5fa;
}
.input-name::after,
.input-pass::after,
.input-deviceid::after {
  width: 40px;
  height: 40px;
  text-align: center;
  color: #4e4b66;
  background-color: #efeff5;
}
.input-name::after {
  content: "\e616";
  line-height: 2;
  font-size: 20px;
}
.input-pass::after {
  content: "\e610";
  line-height: 2.5;
  font-size: 16px;
}
.input-deviceid::after {
  content: url("img/DeviceId.png");
  line-height: 2.5;
  font-size: 16px;
  padding-top: 3px;
}
.input-deviceid.error::after {
  content: url("img/DeviceIdWhite.png");
  line-height: 2.5;
  font-size: 16px;
  padding-top: 3px;
}
.hide-control {
  display: none;
}
.form-field.error input {
  background-color: #fff;
  border: 1px solid #fff;
  color: #ffffff;
}
.form-field.error input:-webkit-autofill {
  color: #FFFFFF !important;
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
.form-field.error::before {
  background-color: #e37782;
}
.input-name.error::after,
.input-pass.error::after {
  color: #fff;
}
.form-button input {
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  width: 100%;
  font-weight: bold;
  background-color: #515151;
  margin-bottom: 5px;
}
.form-button input:hover {
  background-color: #515151;
}
.form-button input:active {
  background-color: #515151;
  line-height: 43px;
}
.forgot-pass {
  text-align: center;
}
.forgot-pass a {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 40px;
  padding-right: 40px;
  text-decoration: none;
}
.forgot-pass a::after {
  font-size: 18px;
  content: "\e900";
  display: inline;
  position: absolute;
  height: 40px;
  width: 40px;
  background-size: 18px;
  background-position: 0 12px;
}
.section-register {
  padding-top: 15px;
  height: 90px;
  width: 100%;
}
.reg-title {
  padding: 40px 0 20px;
  margin: 0 -20%;
  text-transform: uppercase;
  text-align: center;
  font-size: 22px;
  line-height: 60px;
  color: #416b8a;
}
.reg-text {
  font-size: 14px;
  line-height: 23px;
  text-align: left;
  color: #95a2a8;
  padding-bottom: 2em;
}
.section-register .form-box {
  padding-top: 30px;
  margin-bottom: 0;
}
.section-register .form-button a {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  width: 100%;
  font-weight: bold;
  border-radius: 3px;
  background-color: #0274CC;
  text-decoration: none;
  font-size: 14px;
}
.section-register .form-button a:hover,
input[type=submit]:hover {
  background-color: #515151;
}
.section-register .form-button a:active {
  background-color: #0262ab;
  line-height: 43px;
}
