/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

/* Pink Main Button */
.btn-pink {
  background-color: #FF3B77;
  border: none;
  color: white;
}

.btn-pink:hover {
  background-color: #e6336a;
  color: white;
}

/* Section Backgrounds */
.hero-section {
  background: linear-gradient(to right, #f2fdf7, #fdfdff);
}

/* Cards */
.card {
  border-radius: 1.5rem;
}

/* Navbar */
.navbar-brand {
  font-weight: bold;
  color: #FF3B77 !important;
}

/* Alerts */
.alert {
  max-width: 600px;
  margin: 0 auto 20px auto;
}

/* Input Fields */
input.form-control, textarea.form-control {
  border-radius: 1rem;
}

/* Tables */
.table th, .table td {
  vertical-align: middle;
}

/* Footer */
footer {
  background: #ffffff;
}

/* Profile image zoom animation */
@keyframes zoomInProfile {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.profile-animate {
  animation: zoomInProfile 0.5s ease-out;
}
