body {
  background: top right #000 url(./images/waves.png) no-repeat fixed !important;
  background-size: auto 100% !important;
}

.login-wrapper {
  font-family: 'Roboto';
  color: #000;
  background: #f4f4f4;
  width: 425px;
  border-radius: 20px;
  /* center element */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#loginTitle {
  font-size: 20px;
  text-align: center;
}

#loginLogo {
  text-align: center;
  margin: 10px 20px;
}

.login-wrapper form {
  display: flex;
  flex-direction: column;
  width: 329px;
  margin: auto;
  margin-top: 20px;
  padding-bottom: 15px;
}

.login-wrapper form input {
  color: #000;
  border: 1px solid #b2b2b2;
  margin-bottom: 15px;
  height: 44px;
  font-size: 14px;
  padding-left: 10px;
  border-radius: 2px;
}

.login-wrapper form input::placeholder {
  font-family: 'Roboto';
}

.login {
  font-size: 18px;
  border-radius: 4px;
  border: 0;
  transition: background-color 1s ease;
}

#login {
  background-color: #a4ce3d;
}

#SSO {
  background-color: #068743;
  color: #fff;
}

/* warning modal */
.modal-header.green {
  background-color: #a4ce3d !important;
}

.modal-title.black {
  color: #000;
}

/* mobile */
@media only screen and (max-width: 470px) {
  .login-wrapper {
    width: auto;
  }

  .login-wrapper p {
    font-size: 16px;
  }

  .login-wrapper form input {
    width: 70%;
    margin: 15px auto;
  }
}

/* roboto font */
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto/Roboto-Regular.eot');
  src: local('Roboto'), local('Roboto-Regular'),
    url('../fonts/roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto/Roboto-Regular.woff') format('woff'),
    url('../fonts/roboto/Roboto-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.modal-action {
  background: #068743;
  color: #fff;
}

.modal-cancel {
  background: #fff;
  color: #000;
  border: 1px solid #B2B2B2;
  margin-right: 5px;
}