body {
    font-family: helvetica, arial, verdana, sans-serif;
    background: #e1e1e1;
    font-size:16px;
    color: #fff;
}
.login-box{
  margin: 9% auto 4% auto;
  width: 500px;
  background-color: #fff;
  padding: 0px 0px 10px 0px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.33);
  -moz-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.33);
  box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.33);
}
.header{
    background-color: #00549a;
    padding: 15px 0;
    font-weight: bold;
    display: flex;
    font-size: 18px;
    line-height: 2;
}
.bell-logo {
    position: relative;
    display: block;
    width: 65px;
    height: 38px;
    background: transparent url(../resources/images/bellIcon.png) no-repeat left top;
    background-size: 100% 100%;
    margin-left: 30px;
    margin-right: 30px;
}
.notice {
    color: #555555; margin: 10px;
}
.error-msg {
    display: none;
    color: red;
    padding: 5px 0 5px 0;
    font-size: 0.8em;
}
.login-form-group{
  width:100%;
  margin-bottom: 25px;
  text-align:center;
}
.login-form-group input[type="text"],
.login-form-group input[type="password"]{
  width: 328px;
  height:45px;
  outline: none;
  border: 2px solid #d4d4d4;
  padding: 0 10px;
  border-radius: 2px;
  background-color: #f4f4f4;
  color: #555;
  font-size:0.8em;
  -webkit-transition:all 0.1s linear;
  -moz-transition:all 0.1s linear;
  transition:all 0.1s linear;
}
.login-form-group input:focus,
.lang-form-row select:focus {
  background-color: #f4f4f4;
  border: 2px solid #96b8ef;
}
.login-form-group input[type="submit"]{
  width:350px;
  background-color: #003778;
  border: 2px solid #003778;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  margin: 15px 0;
  padding: 10px 36px;
  border-radius: 24px;
  cursor: pointer;
}
.login-form-group input[type="submit"]:focus,
.login-form-group input[type="submit"]:hover{
    background-color: #00549a;
    border-color: #00549a;
}
input::-moz-focus-inner {
    border: 0;<%-- remove dots --%>
}
.lang-form-row {
  width:100%;
  margin-bottom: 25px;
  text-align:center;
  display: flex;
  margin-top: 20px;
}
.lang-label {
  width: 226px;
  height:45px;
  color: #333;
  display: inline-block;
  text-align: right;
  padding-top: 5px;
}
.lang-form-row select {
  width: 180px;
  height:45px;
  outline: none;
  background-color: #f4f4f4;
  border: 2px solid #d4d4d4;
  padding: 0 10px;
  margin-left: 18px;
  border-radius: 2px;
  color: #555;
  font-size:0.8em;
  -webkit-transition:all 0.1s linear;
  -moz-transition:all 0.1s linear;
  transition:all 0.1s linear;
}
.recaptcha_container {
    display: flex;
    justify-content: center;
}