body {
    height: 100vh;
    overflow: hidden;
}
.login-form {
  min-width: 300px;
  background-color: #FFFFFF;
  position: absolute;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0px 0px 20px 4px rgba(34, 60, 80, 0.12);
  -moz-box-shadow: 0px 0px 20px 4px rgba(34, 60, 80, 0.12);
  box-shadow: 0px 0px 20px 4px rgba(34, 60, 80, 0.2);
  padding: 20px;
  z-index: 2;
}
@media screen and (orientation:landscape) {
  .login-form {
    width: 50%;
    height: auto;
    max-width: 460px;
  }
}
@media screen and (orientation:portrait) {
  .login-form {
    width: 70%;
    height: auto;
  }
}
.login-header {
  font-size: 24px;
  margin-bottom: 30px;
  margin-top: 10px;
}
.login-input {
  overflow: hidden;
  text-align: left;
  padding: 10px;
  border-radius: 5px;
  color: #78818E;
  background-color: #FFFFFF;
  border: 1px solid #D9D9D9;
  margin-bottom: 15px;
  box-sizing: border-box;
  width: 100%;
}
input::-ms-reveal {
    display: none;
}
.login-error {
    border: none;
    border-radius: 5px;
    padding: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #FF3934;
    color: #FFFFFF;
    box-sizing: border-box;
    width: 100%;
    margin-top: -10px;
    margin-bottom: 20px;
}
.login-button {
  border: none;
  border-radius: 5px;
  padding: 10px;
  background-color: #4886FF;
  color: #FFFFFF;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
}
.login-button:disabled {
  background-color: #78818E !important;
}
.password-container {
    position: relative;
    box-sizing: border-box;
}
.password_change_view_icon {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 10px;
  top: 7px;
}
.password_change_view_icon:hover {
    cursor: pointer;
}
.login-button:hover {
  cursor: pointer;
  background-color: #396ed5;
}
.links-container {
  box-sizing: border-box;
  width: 100%;
  padding-left: 3px;
  padding-right: 3px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

/* waves */
.ocean {
  height: 45vh; /* change the height of the waves here */
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
}
.wave {
  background-repeat: no-repeat !important;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%234886FF'/%3E%3C/svg%3E");
  background-size: auto 100%;
  position: absolute;
  width: 250%;
  height: 100%;
  animation: wave 10s -3s linear infinite alternate;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
}

.wave:nth-of-type(2) {
  bottom: 0;
  animation: wave 18s linear infinite alternate-reverse;
  opacity: 0.5;
}

.wave:nth-of-type(3) {
  bottom: 0;
  animation: wave 20s -1s linear infinite  alternate;
  opacity: 0.5;
}

@keyframes wave {
    0% {transform: translateX(0);}
    50% {transform: translateX(-25%);}
    100% {transform: translateX(-50%);}
}

.politics-container {
    margin-bottom: 16px;
}
.accept-politics {
    display: flex;
    font-size: 14px;
    color: #78818E;
    margin-bottom: 2px;
}
.blue-box {
    position: relative;
    width: 10px !important;
    height: 10px !important;
    border: 2px solid #4886FF;
    border-radius: 2px;
    margin-right: 10px;
    margin-top: auto;
    margin-bottom: auto;
    cursor: pointer;
}
.check {
    position: absolute; top: -4px; left: -9px;
    width: 8px;
    height: 14px;
    margin: -3px 10px 3px;
    border: solid black;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}