:where([class^="ri-"])::before {
  content: "\f3c2";
}
body {
  font-family: "Poppins", sans-serif;
}
.hero-section {
  background-image: url("https://readdy.ai/api/search-image?query=modern%20university%20campus%20with%20diverse%20students%20walking%20in%20front%20of%20a%20contemporary%20building%2C%20bright%20daylight%2C%20professional%20photography%2C%20clean%20architecture%2C%20academic%20atmosphere%2C%20trees%20and%20green%20spaces%2C%20no%20text%20visible%2C%20left%20side%20with%20clean%20gradient%20for%20text%20overlay&width=1920&height=1080&seq=1&orientation=landscape");
  background-size: cover;
  background-position: center right;
  position: relative;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #3b82f6;
}
.custom-checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.custom-checkbox:checked {
  background-color: #3b82f6;
  border-color: #3b82f6;
}
.custom-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
