/* General styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}
.container {
  width: 90%;
  max-width: 800px;
  margin: 50px auto;
}

/* General Styles */

header {
  background-color: #007bff;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

header h2 {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #fff;
}

header p {
  font-size: 1rem;
  margin: 10px 0;
  line-height: 1.6;
}

header p strong {
  color: #fff;
}

header p a {
  color: #ffd700;
  text-decoration: none;
}

header p a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  header h2 {
    font-size: 1.3rem;
  }

  header p {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  header p strong {
    display: block;
    margin-top: 10px;
  }

  header p a {
    display: block;
    margin-top: 5px;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #007bff;
  /* background: #333; */
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 0rem;
}

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.form-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  margin-bottom: 30px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: #3498db;
  border-radius: 5px;
  transition: width 0.3s ease;
}

/* Form Styles */
.signup-form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 5px;
}

.form-group input {
  width: 90%;
  padding: 10px;
  font-size: 1rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  border-color: #3498db;
}

.password-input {
  position: relative;
}

.password-input input {
  padding-right: 40px;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #555;
}

.toggle-password:hover {
  color: #3498db;
}

.submit-button {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #3498db;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #2980b9;
}

/* Password Requirements Checklist */
.requirements-checklist {
  margin-top: 30px;
}

.requirements-checklist h2 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.requirements-checklist ul {
  list-style: none;
  padding: 0;
}

.requirements-checklist li {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.requirements-checklist li::before {
  content: "•";
  color: #3498db;
  margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .form-description {
    font-size: 1rem;
  }

  .form-group input {
    font-size: 0.9rem;
  }

  .submit-button {
    font-size: 0.9rem;
  }

  .requirements-checklist h2 {
    font-size: 1.3rem;
  }

  .requirements-checklist li {
    font-size: 0.8rem;
  }
}