button {
  background-color: #f27420;
  border: 1px solid #f27420;
  height: 50px;
  width: 50%;
  color: #ffffff;
}
.modal {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: fit-content;
  border: 2px solid #f27420;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  .close {
    margin: 20px;
    font-size: 2rem;
  }
  h2 {
    text-align: center;
  }
  form {
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;

    input {
      height: 50px;
      margin: 10px;
    }
    button {
      background-color: #f27420;
      border: 1px solid #f27420;
      height: 50px;
      width: 50%;
      color: #ffffff;
    }
  }
}

.close {
  float: right;
  cursor: pointer;
}
