.auth-view {
  grid-row: 1 / -1;
  overflow-y: auto;
  padding: 24px 16px;
  color: #fefefe;
}

.auth-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--col-w);
  margin: 0 auto;
}

.auth-page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  font-family:
    "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans",
    Arial, sans-serif;
  font-size: calc(var(--col-w) * 0.025);
  font-weight: bold;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.auth-page-title {
  width: min(100%, calc(var(--col-w) * 0.85));
  font-family:
    "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans",
    Arial, sans-serif;
  font-weight: bold;
  text-align: center;
  color: #000dff;
  font-size: clamp(16px, 2vw, 32px);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: 12px 0 0;
}

.auth-page .signin-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.auth-page .signin-form input {
  width: calc(var(--col-w) * 0.5);
  height: calc(var(--col-w) * 0.035);
  padding: 8px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid #040130;
  color: #000000;
  font-family: inherit;
  font-size: calc(var(--col-w) * 0.025);
  box-sizing: border-box;
}

.auth-page .signin-form input:hover,
.auth-page .signin-form input:focus {
  border-color: #ddacee;
  box-shadow: 0 0 8px rgba(221, 172, 238, 0.5);
  outline: none;
}

.auth-page .signin-form button {
  background: #49488a;
  color: #fefefe;
  border: 1px solid #ddacee;
  padding: 6px 12px;
  margin-right: 10px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease-in-out;
  width: calc(var(--col-w) * 0.5);
  height: calc(var(--col-w) * 0.035);
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 32px;
  border: 2px solid rgba(73, 72, 128, 1);
  color: #ff0000;
  text-shadow: 0 1px 3px rgb(39, 197, 255);
  position: relative;
  font-size: calc(var(--col-w) * 0.025);
  pointer-events: auto;
  text-align: center;
  box-shadow: 0 0 var(--glow-blur) var(--glow-color);
  align-self: center;
  margin: 0 auto 10px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.auth-page .status-message-slot {
  width: min(100%, calc(var(--col-w) * 0.5));
  max-width: 600px;
}

.auth-page .status-message {
  width: 100%;
  font-size: calc(var(--col-w) * 0.015);
  text-align: center;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  margin: 0;
  box-sizing: border-box;
}
