:root {
  color-scheme: dark light;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

main {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 10px;
}

h1 {
  text-align: center;
  color: #3179ff;
}

h3 {
  text-align: center;
  color: #f0f8ff98;
  font-weight: normal;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background-color: #f0f8ff3b;
  border: 0;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
}

.box > span {
  width: 100%;
}

.clip {
  background-color: #f0f8ff38;
  border: 0;
  padding: 3px;
  transition: 1s all;

  &:hover {
    background-color: #f0f8ff54;
  }
}

.radio-group {
  display: flex;
  gap: 10px;
  justify-content: space-around;
  align-items: center;
}

label {
  text-transform: capitalize;
}

label[for='radio-normal'] {
  color: #7dff318c;
}

label[for='radio-seguro'] {
  color: #b331ffa4;
}

label[for='radio-super'] {
  color: #ff6b319f;
}
