@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');
.signal {
  /*border:3px solid #ffd858;*/
  background-color: #ffd858;
  border-radius:30px;
  height:30px;
  opacity:0;
  width:30px;

  animation: pulsate 1s ease-out;
  animation-iteration-count:infinite;
}

@keyframes pulsate {
  0% {
    transform:scale(.1);
    opacity: 0.0;
  }
  50% {
    opacity:.8;
  }
  100% {
    transform:scale(1.0);
    opacity:0;
  }
}

@media (min-width: 1536px) {
  .\34xl\:bottom-\[-200px\] {
    bottom: -600px;
  }
}

.UnloggedLayout {
    background-color: white;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    overflow: auto;
  }
  .UnloggedInner {
    max-width: 500px;
    width: 100%;
    height: 100%;
    align-self: center;
    padding: 32px 0px;
    margin: auto;
  }
  
  .UnloggedLayout .UnloggedHeader {
    margin-bottom: 48px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .UnloggedLayout .UnloggedLogo {
    height: auto;
    width: 100%;
    max-width: 150px;
  }
  
  .UnloggedLayout .UnloggedForm {
    display: flex;
    flex-direction: column;
    margin: 10px;
  }
  
  .form-container {
    color: #5e6c84;
  }
  
  .form-container h1 {
    font-size: 26px;
    text-align: center;
    font-weight: normal;
    margin: 0 auto 15px auto;
    color: #162a4e;
    font-family: 'Lato', sans-serif;
  }
  
  .form-container h1 + p {
    font-size: 16px;
    text-align: center;
    color: #5e6c84;
    margin: 0 auto;
  }

  a {
    color: #6633CC;
  }

  a:hover {
    color: #8144FF;
  }
  
  .form-container > form {
    margin-top: 30px;
  }
  
  .form-container > form ~ p {
    margin-top: 40px;
    text-align: center;
    color: #5e6c84;
    font-size: 14px;
  }
  
  .UnloggedLayout .FormButton {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    height: 40px;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: bold;
  }
  
  .UnloggedLayout label {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .UnloggedLayout .animated {
    animation-name: fadeIn;
    animation-duration: 1s;
  }
  
  .UnloggedLayout .ant-alert {
    margin-top: 20px;
  }

  .form-footer {
    align-items: center;
    text-align: center;
  }
  
  .ant-btn {
    display: inline-block;
    height: 32px;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 35px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 4px;
    border: 1px solid #6633CC;
    background-color: #6633CC;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.645,.045,.355,1);
  }
  
  .ant-btn:hover {
    background-color: #8144FF;
  }

  .ant-btn {
    color: white;
  }

  .ant-btn2 {
    display: inline-block;
    height: 32px;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 35px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 4px;
    border: 1px solid #d9d9d9;
    background-color: white;
    color: black;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.645,.045,.355,1);
  }

  .ant-btn2:hover {
    border-color: #8144FF;
    color: #8144FF;
  }