.register-page {
  position: relative;
  height: 90vh;
  margin-top: 140px;
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: #F6F6F7;

  h1 {
    font-weight: 700;
    font-size: 30px;
    color: #0077B6;
    text-align: left;
  }

  .form-group {
    text-align: left;
  }

  label {
    font-weight: 400;
    font-size: 14px;
    color: #353535;
    text-align: left;
  }

  input {
    height: 48px;
    border-radius: 54px;
    background-color: #F8F8F8;
    border: 1px solid #DFDFDF;
  }

  input:focus {
    border-color: #E8853A;
    background-color: #fff;
    color: #5C5C5C;
  }

  .button-wrapper {
    margin-top: 20px;
    justify-content: center;
  }

  button {
    padding: 12px 30px;
    border-radius: 5px;
    background-color: #E8853A;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
  }

  button:hover, button:focus {
    color: #fff !important;
    background-color: #E8853A !important;
  }
}

@media (max-width: 1199px) {
  .register-page {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-top: 100px;
  }

  .button-wrapper {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    padding: 0px 10px;
  }
}