@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

body {
  margin: 0;
  background: #f5f6fa;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2e3d;
}

.onboarding-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.onboarding-layout {
  display: flex;
  min-height: 100vh;
}

.onboarding-sidebar {
  width: 30%;
  background-color: #1f2e3d;
  color: #fff;
  padding: 2rem;
  box-sizing: border-box;
}

.onboarding-sidebar h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.onboarding-sidebar ul {
  padding-left: 1.2rem;
}

.onboarding-sidebar li {
  margin-bottom: 1rem;
  line-height: 1.4;
}

.onboarding-content {
  flex: 1;
  background: #fff;
  padding: 3rem 2rem;
  box-sizing: border-box;
}

.onboarding-header {
  text-align: right;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.onboarding-header a {
  color: #1f2e3d;
  text-decoration: none;
  font-weight: bold;
}

.account-type-choice {
  text-align: center;
  margin-bottom: 2rem;
}

.account-type-choice h2 {
  font-size: 1.8rem;
  font-weight: 600;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 2px solid #ccc;
}

.status-bar .step {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 4px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.status-bar .step.active {
  font-weight: 600;
  border-bottom-color: #C99A7E;
}

.status-bar .step.done {
  color: green;
}

.step-content {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Form field enhancements */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Button styling */
button {
  background-color: #1f2e3d;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  margin: 0.5rem 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #3a4e61;
}

.btn-outlined, .btn-filled {
  display: block;
  margin: 1rem auto;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  width: 280px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-outlined {
  border: 2px solid #1f2e3d;
  background: #fff;
  color: #1f2e3d;
}

.btn-outlined:hover {
  background: #f0f2f4;
}

.btn-filled {
  border: none;
  background: #1f2e3d;
  color: #fff;
}

.btn-filled:hover {
  background: #314457;
}

.contact-block {
  background: #f9f9f9;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #007bff;
  border-radius: 4px;
}

/* Checkbox/radio spacing */
label > input[type="checkbox"],
label > input[type="radio"] {
  margin-right: 0.5rem;
}
