* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  font-size: 14px;
  background: #fff;
  padding: 30px;
}

.container {
  display: flex;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.box {
  flex: 1;
  padding: 20px 25px;
  background-color: #fff;
}

.wrapper {
  max-width: 800px;
  margin: 0 auto;
}



h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.subtitle {
  color: #555;
  margin-bottom: 10px;
}

.box p {
  margin-bottom: 10px;
  line-height: 1.5;
}

form label {
  display: block;
  margin: 12px 0 4px;
}

input[type=email],
input[type=password] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
}

.button {
  background: #333;
  color: #fff;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
  text-decoration: none !important;
}

.button:hover {
  background: #555;
}

.error {
  color: red;
  margin-bottom: 10px;
}

.forgot-password {
  display: inline-block;
  margin-top: 5px;
  color: red;
  font-size: 13px;
}

.right-box p {
  margin-bottom: 15px;
}

/* Fortschrittsbalken */
.progress-bar {
  display: flex;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  border-bottom: 2px solid #ddd;
}

.progress-bar li {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-bottom: 4px solid transparent;
  font-weight: bold;
  color: #999;
}

.progress-bar li.active {
  border-color: #333;
  color: #333;
}

/* Tabs oben */
.tab-nav {
  display: flex;
  margin-bottom: -1px;
  margin-left: 1px;
}

.tab-nav a {
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: #f9f9f9;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin-right: 2px;
}

.tab-nav a.active {
  background: #fff;
  border-bottom: 1px solid #fff;
  z-index: 2;
  position: relative;
}

.content-box {
  border: 1px solid #ccc;
  background: #fff;
  padding: 25px;
  position: relative;
  z-index: 1;
}


.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.form-section {
  flex: 1 1 45%;
  background: #fff;
}

.form-section h2 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
}

.form-section label {
  display: block;
  font-weight: normal;
  margin: 10px 0 4px;
}

.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="password"],
.form-section input[type="date"],
.form-section select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
}

.form-section p {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.form-section input[type="checkbox"] {
  margin-right: 6px;
}

.form-submit {
  flex: 1 1 100%;
  text-align: right;
  border: none;
  padding-top: 10px;
}
