@import url("register.css");

/* Inherit all styles from register.css with minor adjustments */
.container h2 {
  color: #1e3c72;
}

/* Additional signin-specific styles if needed */
.container form {
  animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}