*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #0f2027, #452858, #2c5364);
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  padding: 1.5rem;
}

.glass-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 4rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  color: #fff;
  text-align: center;
  margin: 0.5rem 0;
}
.glass-box input, .glass-box select {
  width: 100%;
  padding: 1.2rem;
  margin: 1rem 0;
  border: none;
  outline: none;
  font-size: 1.5rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.glass-box button {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  cursor: pointer;
  transition: 0.2s;
}
.glass-box button:hover {
  background: #fff;
}
.glass-box h2 {
  margin-bottom: 1rem;
  font-weight: 600;
}
.glass-box--link-form-width {
  max-width: 70rem;
}
.glass-box__subdomain-list {
  max-height: 20rem;
  overflow: scroll;
  padding: 1rem 0 0 3rem;
  margin-top: 1rem;
  border-radius: 0.8rem;
  background: rgba(0, 0, 0, 0.3);
}
.glass-box__subdomain-list li {
  background-color: rgba(0, 0, 0, 0.1);
  margin: 0.5rem;
  border-radius: 0.3rem;
  padding: 0.5rem;
}
.glass-box__subdomain-list li:nth-child(even) {
  background-color: rgba(1, 1, 1, 0.2);
}

button {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  font-weight: bold;
  cursor: pointer;
}
button:hover {
  background: #fff;
}

.link-button {
  text-decoration: none;
  color: #000;
  background: rgb(206, 206, 206);
  padding: 1rem 0.5rem;
  border: 0.3rem 1rem;
  border-radius: 0.6rem;
  outline: none;
  margin-top: 0.5rem;
}
.link-button--logout {
  background-color: rgb(255, 125, 125);
}

.text-link {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.message {
  margin: 1.5rem 0;
  padding: 1rem;
  border-radius: 0.8rem;
  background: rgba(0, 0, 0, 0.3);
}

.error {
  color: #ff9292;
  font-weight: 600;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.8rem;
  border: solid 1px #ff9292;
  padding: 1rem;
}

.success {
  color: #8af17c;
  font-weight: 600;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.8rem;
  border: solid 1px #8af17c;
  padding: 1rem;
}

.info {
  color: #fdff98;
  font-weight: 600;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.8rem;
  border: solid 1px #fdff98;
  padding: 1rem;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1.5rem;
}

th,
td {
  border: 1px solid #ddd;
  padding: 0.5rem 0.8rem;
  text-align: left;
  color: #000;
}

th {
  background-color: #afdfff;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 600;
}

tr {
  background-color: #64b9ff;
}

tr:nth-child(even) {
  background-color: #57b4ff;
}

tr:hover {
  background-color: #b1dd9c;
  transition: all 0.2s ease-in-out;
}

ol {
  padding-left: 1.7rem;
}
