/* Auth Container */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: #121212;
}

.auth-card {
  background-color: #121212;
  border-radius: 8px;
  padding: 48px 40px;
  width: 100%;
  max-width: 450px;
  text-align: center;
}

.auth-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.auth-error {
  background-color: #e74c3c;
  color: #fff;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 14px;
  text-align: left;
}

.auth-error p {
  margin: 4px 0;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-field {
  text-align: left;
}

.auth-label {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.auth-input {
  width: 100%;
  padding: 14px 16px;
  background-color: #242424;
  border: 1px solid #727272;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.auth-input:focus {
  border-color: #fff;
  box-shadow: 0 0 0 1px #fff;
}

.auth-input::placeholder {
  color: #a7a7a7;
}

.auth-submit-btn {
  width: 100%;
  padding: 14px 32px;
  margin-top: 16px;
  background-color: #1DB954;
  color: #000;
  border: none;
  border-radius: 500px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.auth-submit-btn:hover {
  transform: scale(1.04);
  background-color: #1ed760;
}

.auth-divider {
  margin: 32px 0;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #404040;
}

.auth-divider span {
  position: relative;
  background-color: #121212;
  padding: 0 16px;
  color: #a7a7a7;
  font-size: 14px;
}

.auth-secondary-btn {
  display: block;
  width: 100%;
  padding: 14px 32px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #727272;
  border-radius: 500px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, background-color 0.2s;
  box-sizing: border-box;
}

.auth-secondary-btn:hover {
  transform: scale(1.04);
  border-color: #fff;
  background-color: #1a1a1a;
}

/* Responsive */
@media (max-width: 480px) {
  .auth-card {
    padding: 32px 24px;
  }

  .auth-title {
    font-size: 1.5rem;
  }
}
