﻿#statusLine {
  font-size: 110%;
  color: red;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

#loginMessage {
  width: 480px;
  padding: 20px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
}

.login-page {
  width: 410px;
  padding: 5% 0 0;
  margin: auto;
}

.logon-image {
  margin: 0 0 15px;
}

.logon-header {
  text-align: center;
  color: #023E5D;
  margin-bottom: 20px;
  line-height: 40px;
}

.header-text {
  visibility: hidden;
  font-size: 20px;
  font-weight: bold;
}

.login-page:hover .logon-header {
  color: #035f8f;
}

.logon-logo {
  text-align: center;
  margin-bottom: 1em;
}
.logon-logo img {
  border: none;
}

div.form {
  position: relative;
  z-index: 1;
  background-color: rgb(255, 255, 255);
  margin: 0 auto 100px;
  padding: 35px 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
div.form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 18px;
}
div.form input.input-validation-error {
  background-color: #ffeeee;
}
div.form div.validation-summary-errors {
  font-size: 14px;
  color: red;
  text-align: left;
}
div.form button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #007bff;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 16px;
  transition: all ease 0.2s;
  cursor: pointer;
}
div.form button.loading {
  font-size: 0;
  width: 30px;
  height: 30px;
  margin-top: 5px;
  border-radius: 15px;
  padding: 0;
  border: 3px solid #0080FF;
  border-bottom: 3px solid rgba(255, 255, 255, 0);
  border-left: 3px solid rgba(255, 255, 255, 0);
  background-color: transparent !important;
  animation-name: rotateAnimation;
  animation-duration: 1s;
  animation-delay: 0.1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
div.form button:hover, div.form button:active, div.form button:focus {
  background: #4da3ff;
}
div.form button.disabled {
  opacity: 0.5;
}
div.form .message {
  margin: 15px 0 0;
  color: #909090;
  font-size: 14px;
}
div.form .message a {
  color: #1e7aa1;
  text-decoration: none;
}
div.form .message:hover a {
  color: #228bb6;
  text-decoration: underline;
}
div.form #poweredbyrt {
  margin-top: 1.5em;
}
div.form #poweredbyrt a {
  color: black;
  font-size: 65%;
  text-decoration: none;
}
div.form #poweredbyrt div {
  letter-spacing: 0.56em;
  padding-left: 4%;
}
div.form #poweredbyrt img {
  width: 50%;
  opacity: 1;
}
div.form .envError {
  font-size: 13px;
  text-align: left;
  color: red;
  margin-top: 10px;
  margin-bottom: 10px;
}

.dbMigrationError {
  color: red;
}

.capsLockWarning {
  color: red;
  text-align: right;
  margin-bottom: 10px;
}

html {
  min-height: 100vh;
}

body {
  min-width: 400px;
  background: #89f7fe; /* fallback for old browsers */
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 480px) {
  #loginMessage {
    width: 90%;
    padding: 2%;
  }
  .login-page {
    width: 90%;
    max-width: none;
  }
  div.form {
    background-color: white;
    padding: 15px;
  }
}
@media only screen and (min-width: 480px) {
  body {
    /*
    background-image: url(rt-logon-bk.jpg);
    //    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/slider-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #003F5D;
    */
  }
}
