@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,500);
*:focus {
  outline: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

body {
  margin: 0;
  padding: 0;
  background: #ddd;
  font-size: 16px;
  color: #222;
  font-weight: 300;
    font-family: Arial;
}

.color-70bf46 {color: #70bf46;}

#infoMessage {color:red; font-size:13px;}
#login-box {
  position: relative;
  margin: 3% auto;
  width: 100%;
  max-width: 550px;
  /*height: 400px;*/
  background:rgba(255,255,255, 0.8);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.rtl {direction: rtl!important;}


h1 {
  margin: 0 0 20px 0;
  font-weight: 300;
  font-size: 28px;  
}

.username-field {direction: ltr;}

.username-field,
.password-field {
  display: block;
  box-sizing: border-box;
  padding: 4px;
  width: 100%;
  /*height: 32px;*/
  border: none;
  border-bottom: 1px solid #AAA;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  transition: 0.2s ease;
  margin: 10px auto;
}

.username-field:focus,
.password-field:focus {
  border-bottom: 2px solid #16a085;
  color: #16a085;
  transition: 0.2s ease;
}

input[type="submit"] {
  margin-top: 28px;
  width: 120px;
  height: 32px;
  background: #16a085;
  border: none;
  border-radius: 2px;
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.1s ease;
  cursor: pointer;
}

input[type="submit"]:hover,
input[type="submit"]:focus {
  opacity: 0.8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: 0.1s ease;
}

input[type="submit"]:active {
  opacity: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  transition: 0.1s ease;
}


.right {
  position: relative;
  box-sizing: border-box;
  padding: 40px;
  width:90%;
  margin:0 auto;
}

.right .logo-image img {margin:0 auto; max-width: 350px;}

.right .links {margin-top:20px;}


.margin-top-85 {margin-top:85px!important;}
.margin-top-65 {margin-top:65px!important;}
.margin-top-55 {margin-top:55px!important;}
.margin-top-45 {margin-top:45px!important;}
.margin-top-25 {margin-top:25px!important;}
.margin-top-10 {margin-top:10px!important;}
.no-padding {padding:0!important;}
.width-100 {width:100%;}
.font-size-14 {font-size: 14px!important;}
.font-size-12 {font-size: 12px!important;}

::-webkit-input-placeholder {
  font-size: 13px!important;
}

:-moz-placeholder { /* Firefox 18- */
  font-size: 13px!important;
}

::-moz-placeholder {  /* Firefox 19+ */
  font-size: 13px!important;
}

:-ms-input-placeholder {
  font-size: 13px!important;
}

@media (max-width:640px) {
    #login-box {width:90%;}
}