.bootstrap-form-wrapper {
  max-width: 400px;
  margin: 2rem auto;
  background: white;
  padding: 1.5rem;
  border-radius: 0.375rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
  font-family: Arial, sans-serif;
}

.bootstrap-form-wrapper h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.bootstrap-form-wrapper input[type="text"],
.bootstrap-form-wrapper input[type="password"] {
  width: 100%;
  padding: 0.5rem 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  font-size: 1rem;
  box-sizing: border-box;
}

.bootstrap-form-wrapper input[type="text"]:focus,
.bootstrap-form-wrapper input[type="password"]:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}

.bootstrap-form-wrapper button {
  width: 100%;
  background-color: #0d6efd;
  border: none;
  padding: 0.5rem 1rem;
  color: white;
  font-weight: 600;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.bootstrap-form-wrapper button:hover {
  background-color: #0b5ed7;
}
