body {
  font-family: Arial, sans-serif;
 // background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}

/* Use a class instead of a non-standard tag like <hd> */
.header-title {
  background: white;
  color: rgb(30, 80, 42);
  margin-top: 20px;
  font-weight: bold;
  font-size: 28px;
  padding: 10px 20px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Existing form styles */
.ss-form {
    margin-top: 30px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(76, 60, 60, 0.1);
  width: 400px;
  text-align: center;
}

/* Mobile-specific adjustment */
@media (max-width: 480px) {
  .ss-form {
    width: 90%;  /* or 95%, depending on how much space you want */
  }

  .roll-number {
    width: 100%; /* make sure inputs look consistent on mobile */
  }
}


label {
  display: block;
  margin-top: 12px;
  font-weight: bold;
  color: #444;
  text-align: left;
}


.roll-number {
  width: 98%; /* or 50%, or 150px — whatever suits you */
  margin: 0 auto; /* optional: center inside the form */
  display: block;
}


input, select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
  box-sizing: border-box;
}

button {
  background-color: rgb(57, 117, 65);
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  margin-top: 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .header-title {
    font-size: 24px;
    padding: 8px 12px;
  }

  .ss-form {
    padding: 10px 10px;
  }

  input, select {
    font-size: 14px;
    padding: 8px;
  }

  button {
    font-size: 15px;
    padding: 10px;
  }
}
