/* === REGISTRIERUNG === */

.register-main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem;
  background-color: #f8f8f8;
  min-height: 80vh;
}

.register-container {
  background: white;
  padding: 2.5rem 3rem;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.1);
  max-width: 500px;
  width: 100%;
}

.register-container h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.register-form label {
  font-weight: bold;
  color: var(--dark);
}

.register-form input {
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 0.6rem 0.3rem;
  font-size: 1rem;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
}

.register-form input:focus {
  border-color: var(--orange);
}

.cta-button {
  display: inline-block;
  background-color: var(--orange);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #cc6e00;
}

.back-link {
  text-align: center;
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

.back-link a {
  color: var(--orange);
  text-decoration: none;
  font-weight: bold;
}

.back-link a:hover {
  text-decoration: underline;
}
