/* Templates */


/* MAIN */

.ok { 
	color: green; 
	font-size: 0.9em; 
}

.register-form {
	margin: 2rem auto;
	margin-top: 2rem;
	padding: 0 1rem;
	max-width: 600px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.register-form .form-group {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
}

.register-form label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  user-select: none;
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"] {
  padding: 0.55rem 0.8rem;
  font-size: 1rem;
  border: 1.8px solid #ccc;
  border-radius: 10px;
  outline-offset: 2px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.register-form input[type="text"]:focus,
.register-form input[type="email"]:focus,
.register-form input[type="password"]:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 6px rgba(74, 144, 226, 0.5);
}

.checkbox-group label {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  user-select: none;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 0.6rem;
  width: 15px;
  height: 15px;
  cursor: pointer;
  accent-color: #4a90e2; /* moderner Stil für Checkbox */
  border-radius: 4px;
  border: 1.5px solid #ccc;
  transition: border-color 0.3s ease;
}

.checkbox-group input[type="checkbox"]:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 4px rgba(74, 144, 226, 0.7);
}

.register-button {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 0.04rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.register-button:hover,
.register-button:focus {
  background: linear-gradient(135deg, #357abd, #2a5a9e);
  box-shadow: 0 0 12px rgba(53, 122, 189, 0.7);
  outline: none;
}

.error {
  color: #d93025; /* klares, modernes Rot */
  font-size: 0.875rem;
  margin-top: 0.2rem;
  min-height: 1.1em;
}

.form-error {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}

.disclamer-datenschutz {
	text-align: center;
}

.disclamer-datenschutz a {
	text-decoration: none;
    color: var(--settings-link-color);
    transition: color 0.1s ease;
}

.disclamer-datenschutz a:hover {
	text-decoration: underline;
    color: var(--settings-link-color-hover);
}