.content {
  width: 100%;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

.content h1 {
  text-align: center;
}

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

.auth-form {
  background-color: white;
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #343a40;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Password input wrapper and toggle styles */
.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrapper input {
  padding-right: 50px; /* Make room for the toggle button */
}

.password-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  color: #6c757d;
  z-index: 10;
}

.password-toggle:hover {
  background-color: #f8f9fa;
}

.password-toggle:focus {
  outline: none;
  background-color: #e9ecef;
}

.form-error {
  color: #dc3545;
  margin-bottom: 15px;
  padding: 10px 0;
}

.captcha-container {
  margin-bottom: 20px;
}

.form-action {
  margin-top: 25px;
  margin-bottom: 15px;
  text-align: left;
  width: 100%;
}

.submit-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #0069d9;
}

.form-footer {
  text-align: center;
  margin-top: 20px;
  color: #6c757d;
}

.form-footer a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .login-container {
    padding: 0 15px;
  }
}
