body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
}
.swal2-popup.small-toast {
  width: 250px !important;
  font-size: 0.9rem;
  padding: 10px 15px;
  border-radius: 8px;
}

.page-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.signup-container {
  display: flex;
  max-width: 1000px;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.signup-image {
  flex: 1;
  background-color: #f5f5f5;
  display: none;
}
.signup-form {
  flex: 1;
  padding: 40px;
}
.form-control {
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 4px;
  height: auto;
}
.btn-create {
  background-color: #000;
  color: #fff;
  padding: 12px;
  width: 100%;
  font-weight: 500;
}
.btn-create:hover {
  background-color: #333;
  color: #fff;
}
.login-link {
  text-align: center;
  margin-top: 20px;
}
.login-link a {
  color: #000;
  font-weight: 500;
}
h2 {
  color: #333;
  font-weight: 600;
}
@media (min-width: 768px) {
  .signup-image {
    display: block;
  }
}
