/* ----- GENERAL ----- */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f7fa;
}

.container {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
}

/* ----- BACK BUTTON ----- */
.back-to-home {
  margin-bottom: 20px;
}

.btn-back-home {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

/* ----- PROGRESS SECTION ----- */
#progressSection {
  margin-bottom: 30px;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 4px;
  overflow: hidden;
}

#progressFill {
  height: 8px;
  width: 25%;
  background: #007bff;
  transition: 0.3s;
}

/* ----- STEP PAGES ----- */
.step-page {
  display: none;
}

.step-page.active {
  display: block;
}

h1 {
  margin-bottom: 10px;
  font-size: 24px;
}

label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
}

/* ----- INPUT FIELDS ----- */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="date"] {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

/* ----- ACCOUNT TYPE CARDS ----- */
.account-type-grid {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.account-card {
  flex: 1;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.account-card:hover {
  border-color: #007bff;
}

.account-card input {
  margin-bottom: 10px;
}

/* ----- BUTTONS ----- */
.btn-primary {
  background: #007bff;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}
.signin-area {
  padding: 20px; /* Adds padding inside the container */
  margin: 20px auto; /* Adds space around the container */
  max-width: 400px; /* You can adjust this value based on the desired width */
  text-align: center; /* Centers the content inside the div */
  background-color: #f9f9f9; /* Optional: Add a background color for visual separation */
  border-radius: 8px; /* Optional: Adds rounded corners */
}

.signin-text {
  font-size: 16px;
  color: #333;
}

.btn-outline {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  border: 2px solid #007bff;
  color: #007bff;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline.small {
  font-size: 12px; /* Adjust the size if needed */
}

.btn-outline:hover {
  background-color: #007bff;
  color: white;
  border-color: #0056b3;
}

.btn-outline {
  background: white;
  border: 2px solid #007bff;
  color: #007bff;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.btn-row {
  margin-top: 25px;
  display: flex;
  gap: 10px;
}

.large {
  width: 100%;
}

.step-page a.btn-primary {
  display: inline-block;
  text-align: center;
}
