.logout-wrapper {
  height: 900px;
  margin: auto;
  margin-left: -20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.logout_form {
  font-family: 'Roboto';
  width: 600px;
  height: 400px;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 5px;
  background-color: #f2f4f7;
  border: 1px solid #f2f4f7;

  .form_header {
    background-color: #603eff;
    height: 60px;
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    opacity: 0.6;

    h1 {
      margin-left: auto;
      margin-right: auto;
      font-size: 28px;
      line-height: 60px;
      color: #ffffff;
      margin-bottom: 20px;
      font-weight: 400;
      text-align: center;
      padding-left: 20px;

      &::before {
        font-family: 'LeadPages-Icons';
        content: '\e933';
        color: #ffffff;
        font-size: 24px;
        line-height: 60px;
        padding: 5px;
        border: 2px solid #ffffff;
        border-radius: 50%;
        margin-right: 10px;
      }
    }
  }

  h3 {
    text-align: center;
    color: #797f89;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 200;

    a {
      text-align: center;
      color: #797f89;
      margin-bottom: 20px;
      font-weight: 400;
      text-decoration: underline;
    }
  }

  form {
    margin-top: 10px;
  }

  .button_container {
    display: flex;
    align-items: center;
    margin-top: 15px;
  }

  .cancel_button {
    cursor: pointer;
    display: inline-block;
    background-color: #ff0000;
    border: 2px solid #ffffff;
    border-radius: 100px;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0.89px;
    text-transform: uppercase;
    width: 144px;
    height: 56px;
    text-align: center;
    padding-top: 5px;
    font-weight: 200;
    margin-left: auto;
    margin-right: auto;
  }

  .logout_button {
    cursor: pointer;
    display: inline-block;
    background-color: #603eff;
    border: 2px solid #ffffff;
    border-radius: 100px;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0.89px;
    text-transform: uppercase;
    width: 144px;
    height: 56px;
    text-align: center;
    padding-top: 5px;
    font-weight: 200;
    margin-left: auto;
    margin-right: auto;
  }
}
