/* dark_style_person.css */

/* Grundfarben und Fonts */
body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

/* Container mit max-Breite und Innenabstand */
.container {
  max-width: 720px;
  margin: 3rem auto;
  padding: 1rem;
}

/* Überschriften */
h2 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Formularelemente Style */
form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Label */
label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

/* Input, textarea */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 4px;
  color: #e0e0e0;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus {
  outline: none;
  border-color: #4a90e2;
  background-color: #2a2a2a;
}

/* Radio Buttons inline gruppieren */
.form-check-inline {
  display: inline-flex;
  align-items: center;
  margin-right: 1.5rem;
  cursor: pointer;
}

.form-check-input {
  margin-right: 0.5rem;
  cursor: pointer;
  accent-color: #4a90e2; /* moderne Farbe für Radio */
}

/* Buttons */
button.btn {
  background-color: #4a90e2;
  color: white;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.25s ease;
  display: inline-block;
  text-align: center;
}

button.btn:hover {
  background-color: #357abd;
}

/* Zentrierter Button Container */
.text-center {
  text-align: center;
}

/* Abstände */
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
