:root {
  --color-bg1: rgb(22, 0, 33);
  --color-bg2: rgb(0, 4, 20);
  --color-bg3: rgba(41, 60, 65, 0.67);
  --color-interactive: 73, 82, 163;
  --circle-size: 80%;
  --blending: hard-light;
}
body {
  font-family: "Noto Sans", sans-serif;
  margin: 0;
  color: white;
}
.test-accessibility {
  display: grid;
  min-height: 100dvh;
  grid-template-rows: auto 1fr auto;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;
}
.interactive {
  position: absolute;
  background: radial-gradient(
      circle at center,
      rgba(var(--color-interactive), 0.8) 0,
      rgba(var(--color-interactive), 0) 50%
    )
    no-repeat;
  mix-blend-mode: var(--blending);
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  pointer-events: none;
  opacity: 0.7;
}
main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
form div {
  margin-bottom: 2rem;
}
button {
  font-family: "Noto Sans", sans-serif;
  width: 10%;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg3));
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.364);
  border-radius: 40px;
  color: white;
  cursor: pointer;
}
button:hover {
  background: linear-gradient(40deg, var(--color-bg2), var(--color-bg1));
}
.test-accessibility__content {
  padding: 2rem 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.098);
  margin-bottom: 2rem;
}
input {
  font-family: "Noto Sans", sans-serif;
  background: none;
  margin: 0.3rem;
  padding: 1rem;
  border: 1px solid white;
  border-radius: 40px;
  color: white;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: rgba(0, 0, 0, 0.278);
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  width: 220px;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23666' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

select:hover {
  border-color: #bbb;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

select:focus {
  outline: none;
  border-color: #888;
  box-shadow: 0 0 0 2px rgba(100, 100, 255, 0.3);
}
