input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
}

button {
  background-color: #0d6efd;
  /* Bootstrap primary blue */
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
}

button:hover {
  background-color: #45a049;
}

.alert {
  padding: 10px 15px;
  background-color: #f44336;
  color: white;
  margin-bottom: 15px;
  border-radius: 4px;
  font-size: 14px;
}

.logout-btn {
  display: inline-block;
  background-color: #f44336;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 20px;
}

.logout-btn:hover {
  background-color: #d32f2f;
}

.user-info {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 4px;
  margin-top: 20px;
  font-size: 14px;
}