  .lfc-purple{
    color: #391c70;
  }
  
  .lfc-fucshia{
    color: #9a258f;
  }
  
  .wrapper {
    background-image: url("../images/backgrounds/scheduleassessmentbg@2x.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  
  .assessment-form-head{
    font-weight: 900;
    font-size: 3em;
    text-transform: uppercase;
    line-height: 0.9em;
  }
  
  
  #maindiv {
    flex-grow: 1;
    margin-top: 60px;
    margin-bottom: 60px;
  }
  
  div.schedule-form {
    animation: revealbox 800ms ease-in-out forwards 0ms;
  
    @keyframes revealbox {
      0%{
        transform: scaleX(0);
        transform: scaleY(0);
      }
      40%{
        transform: scaleY(1);
      }
      100% {
        transform: scaleX(1);
      }
    }
  }  
  
  .logo-image {
    width: 200px;
    margin-bottom: 5px;
    float: left;
    cursor: pointer;
  }
  
  .schedule-form {
    background-color: #ffffff94;
    justify-content: center;
    margin-top: 60px;
    padding: 40px;
    max-width: 1050px !important;
    backdrop-filter: blur(10px);
  }
  
  .landing-text {
    padding: 0 12px;
    font-size: 22px;
    height: 46px;
    width: 320px;
    border-radius: 12px;
    border: 0;
    margin-right: 10px;
    outline: 0;
  }
  
  .landing-text-error {
    border: 2px solid rgb(196, 25, 110);
  }
  
  .form-button{
    border: none;
    transition: background-color 0.5s ease;
    padding: 6px 25px 4px 25px;
    border-radius: 20px;
    cursor: pointer;
    display: inline-block;
    color: #fff;
  }
  
  .schedule-button {
    background-color: #9a258f;
  }
  .schedule-button:hover {
    transition: ease-in;
    background-color: rgb(121, 26, 111);
  }
  
  .cancel-button {
    background-color: #989898;
  }
  .cancel-button:hover {
    transition: ease-in;
    background-color: #716E6E;
  }
  
  .header-landing {
    width: 90%;
    padding: 20px 50px;
    height: 70px;
    flex-shrink: 0;
    text-align: center;
    align-self: center;
    z-index: 99;
  }
  
  .button-container {
    float: right !important;
  }
  
  .buttons {
    transition: border 0.5s ease;
    text-transform: uppercase;
    color: #fff;
    height: 30px;
    padding: 6px 10px 3px 10px;
    border-radius: 5px;
    border: solid 1px transparent;
    margin: 0 10px 0 0;
  }
  
  .buttons:hover {
    border: solid 1px #fff;
    cursor: pointer;
  }
  
  .buttons:last-child{
    margin-right: 0;
  }
  
  .button-outline {
    border-radius: 5px;
    border-style: solid 1px #fff;
  }
  
  @media only screen and (max-width: 600px) {
    .header-landing {
      text-align: center;
      width: 100% !important;
      padding: 10px 15px !important;
    }
  
    .logo-image {
      width: 170px;
      float: none;
    }
  
    .buttons {
      color: initial;
    }
  
    .button-container {
      float: none !important;
      margin-top: 20px;
    }
  
    .landing-text {
      margin-bottom: 15px;
    }
  
    .schedule-form {
      padding: 40px 20px;
    }
  }
  