body {
  background: #f0f7ff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  padding: 1rem;
  margin: 0;
}

/* Form Container */
.container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.1);
  padding: 2rem;
  margin-top: 10px;
  width: 100%;
  box-sizing: border-box;
}

/* Logo Styling */
.center-logo {
  height: 140px;
  max-width: 200px;
  width: 160px;
  display: block;
  margin: 0 auto;
}

/* Title Below Logo */
.logo-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0077b6;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

/* Input and form responsiveness */
input[type="text"],
input[type="number"],
select,
button {
  width: 100%;
  box-sizing: border-box;
}

/* Responsive Grid for Form Fields */
@media (max-width: 768px) {
  .row {
    display: flex;
    flex-direction: column;
  }

  .col {
    width: 100% !important;
    margin-bottom: 1rem;
  }

  .container {
    padding: 1.5rem;
  }

  .center-logo {
    height: 140px;
    max-width: 200px;
    width: 160px;
  }

  .logo-title {
    font-size: 1.3rem;
  }
}
