* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(103, 103, 236);
}

.container {
  width: 30%;
  background-color: #fff;
  padding: 20px;
  border-radius: 4px;
}

.container .box {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border: 1px solid grey;
  border-radius: inherit;
  margin-bottom: 20px;
}

.box input {
  width: 75%;
  height: 34px;
  font-size: 14px;
  color: #333;
  border: none;
  outline: none;
}

.box span {
  font-size: 16px;
  color: #333;
  user-select: none;
  cursor: pointer;
}

.conditions {
  width: 100%;
}

.conditions h1 {
  font-size: 16px;
  color: #333;
  padding-left: 2px;
  margin-bottom: 20px;
}

.conditions ul {
  padding: 0 18px;
}

.conditions ul li {
  font-size: 14px;
  color: black;
  margin-bottom: 16px;
  list-style: disc;
  font-weight: 400;
}

.conditions ul li.active {
  color: rgb(110, 216, 110);
}

@media (max-width: 450px) {
  .container {
    width: 90%;
  }
}
