:root {
  --color-bg1: rgb(22, 0, 33);
  --color-bg2: rgb(0, 4, 20);
  --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;
  position: relative;
  overflow-y: auto;
  overflow-x: 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;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px;
  width: 100%;
}
.form__button {
  font-family: "Noto Sans", sans-serif;
  width: 100%;
  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;
}
.form__button:hover {
  background: linear-gradient(40deg, var(--color-bg2), var(--color-bg1));
}
header {
  display: flex;
  justify-content: center;
}
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
h2 {
  text-align: center;
}
.test-accessibility__content {
  padding: 5rem 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.098);
  margin: 10px 15px 15px 15px;
}
.gradients-container {
  width: 100%;
  height: 100%;
}
input {
  font-family: "Noto Sans", sans-serif;
  background: none;
  padding: 1rem;
  border: 1px solid white;
  border-radius: 40px;
  color: white;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  color: #fff;
  overflow: hidden; /* Esto ayuda a que los bordes redondeados se mantengan */
}
tr {
  background-color: #2b2c3b;
  transition: background-color 0.2s;
}
tr:hover {
  background-color: #555888;
}
td {
  padding: 10px 20px;
}
tr td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
tr td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
footer {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.212);
}
p {
  font-size: 12px;
}
