.auth-container {
  width: 100%;
  padding: 20px;
}

.auth-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  margin: auto;
  margin-top: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.auth-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: black;
  display: inline-block;
  width: 150px;
  font-weight: 100;
}

.active {
  font-weight: 700;
}

.auth-subtitle {
  font-size: 14px;
  margin-bottom: 30px;
}

.auth-error {
  background-color: rgba(255, 0, 0, 0.1);
  color: #ffdddd;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-weight: 500;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px;
  border: none;
  border-bottom: 1px solid black;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s;
  padding: 10px 0;
}

.auth-field input::placeholder {
}

.auth-field input:focus {
  background: rgba(255, 255, 255, 0.3);
  outline: none;
}

.auth-button {
  padding: 14px;
  background-color: black;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.auth-button:hover {
  background-color: #0096c7;
}

.auth-switch {
  margin-top: 10px;
  font-size: 14px;
}

.auth-switch a {
  color: black;
  text-decoration: none;
  font-weight: 500;
}

.auth-switch a:hover {
  text-decoration: underline;
}