@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

strong, b {
  color: #f9f9f9;
}

.container {
  display: flex;
  justify-content: flex-start; /* Align to the left */
  align-items: center; /* Center vertically */
  height: 100vh; /* Full viewport height */
  flex-direction: column; /* Stack items vertically on small screens */
}

.fees a:link,
.fees a:visited {
  border-radius: 10px;
  background-color: #f44336;
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: block;
  width: auto;
  margin: 0 auto;
  transition: all 0.2s ease;
}

.fees a:hover,
.fees a:active {
  background-color: rgb(170, 0, 255);
}

.container .form {
  margin-top: 30px;
  width: 90%; /* Adjust width for smaller screens */
}

.form .input-box {
  width: 100%;
  margin-top: 20px;
}

.input-box label {
  color: #f44336;
}

.input-box input,
.select-box select {
  height: 64px;
  width: 100%;
  outline: none;
  color: #707070;
  margin-top: 1px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
  justify-content: flex-start; 
}

.input-box input:focus {
  box-shadow: 0 1px 0 rgba(255, 0, 0, 0.1);
}

.form .column {
  display: flex;
  column-gap: 15px;
  flex-wrap: wrap;
}

.address input,
.address .select-box select {
  margin-top: 15px;
}

.select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  color: #707070;
  font-size: 1rem;
}

.form button {
  height: 55px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 10px;
  background: rgb(130, 106, 251);
}

.form button:hover {
  background: rgb(88, 56, 250);
}

.input-box.course-selection {
  margin-top: 20px;
}

.input-box.course-selection label {
  display: block;
  margin-bottom: 10px;
  color: #f44336;
  font-size: 1.5rem;
}

.input-box.course-selection select {
  height: 64px;
  width: 100%;
  outline: none;
  color: #707070;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
  font-size: 1.5rem;
}

.input-box.course-selection select:focus {
  box-shadow: 0 1px 0 rgba(255, 0, 0, 0.1);
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column; /* Stack items vertically on small screens */
    height: auto; /* Adjust height for smaller screens */
  }

  .form .column {
    flex-direction: column; /* Stack columns vertically on small screens */
  }

  .form button {
    width: 100%; /* Full width button on small screens */
  }
}

@media (max-width: 480px) {
  .form .input-box,
  .input-box.course-selection {
    width: 100%; /* Full width input boxes on very small screens */
  }
}
