@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: rgb(236, 180, 81);
}

.wrapper {
  width: 440px;
  background-color: #fff;
  padding: 30px 30px 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrapper img {
  max-width: 103px;
}

.wrapper h1 {
  font-size: 38px;
  font-weight: 500;
  margin: 30px 0;
}

.wrapper .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.wrapper .content.disable {
  opacity: 0.6;
  pointer-events: none;
}

.content .column {
  border-radius: 5px;
  border: 1px solid #999;
  padding: 0 10px;
  width: calc(100% / 3 - 5px);
}

.column select {
  outline: none;
  border: none;
  height: 53px;
  width: 100%;
  font-size: 10px;
}

.wrapper button {
  width: 100%;
  outline: none;
  border: none;
  margin-top: 20px;
  font-size: 20px;
  padding: 17px 0;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  background: rgb(236, 180, 81);
}
