.auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  padding: 1rem;
}

.auth-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-size: 13px;
  color: #888;
  letter-spacing: 0.03em;
}

.field input {
  background-color: #333;
  border: 0.5px solid #555;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 14px;
  font-family: Helvetica, Arial, sans-serif;
  color: #e0e0e0;
  outline: none;
  transition: border-color 0.15s;
}

.field input::placeholder {
  color: #555;
}

.field input:focus {
  border-color: #888;
}

.submit-btn {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.5rem;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: Helvetica, Arial, sans-serif;
  background-color: #e0e0e0;
  color: #1a1a1a;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s;
}

.submit-btn:hover {
  background-color: #ffffff;
}

.submit-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.switch-page {
  font-size: 13px;
  color: #666;
}

.switch-page a {
  color: #aaa;
  text-decoration: none;
}

.switch-page a:hover {
  color: #e0e0e0;
}

.hint-text {
  font-size: 13px;
  color: #666;
  min-height: 1rem;
}

.delete-btn {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: Helvetica, Arial, sans-serif;
  background-color: transparent;
  color: #e07070;
  border: 0.5px solid #e07070;
  cursor: pointer;
  transition: background-color 0.15s;
}

.delete-btn:hover {
  background-color: #3a2a2a;
}

.delete-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}