body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

form {
  padding: 25px;
  max-width: 300px;
  margin: 270px 0 0 360px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-bottom: 1px;
  margin: 7px;
}

select {
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  font-size: 16px;
}

button {
  background-color: #333;
  color: #fff;
  width: 100%;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #555;
  transition: 0.3s ease;
}

.image-container {
  position: fixed;
  top: 30px;
  left: 30px;
  width: 470px;
  height: 100vh;
  background-color: #f5f5f5;
  z-index: 999;
}

.left-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.uni-logo {
  width: 150px;
  height: 150px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.cards-heading {
  position: fixed;
  top: 11px;
  left: 420px;
  width: calc(100% - 450px);
  text-align: center;
}

h4 {
  margin-bottom: 1px;
  margin-top: 1px;
  color: #333;
}

.cards-heading p {
  font-size: 16px;
  color: #777;
  margin-top: 15px;
  text-align: center;
}

.cards-heading h2 {
  font-size: 40px;
  color: #333;
  margin-bottom: 10px;
  margin-top: 60px;
}

::selection {
  color: black;
  background-color: #39FF14;
}

@media (max-width: 768px) {
  .image-container {
    display: none;
  }

  body {
    flex-direction: column;
    height: auto;
  }

  .cards-heading {
    position: static;
    width: 90%;
  }

  .cards-heading h2 {
    font-size: 23px;
    margin-top: 35px;
  }

  .cards-heading p {
    font-size: 13px;
    margin-top: 0px;
  }

  h4 {
    padding-left: 4px;
    font-size: 13px;
    margin-bottom: 3px;
    margin-top: 3px;
  }

  form {
    padding: 20px;
    max-width: 200px;
    margin: 20px auto;
  }

  .uni-logo {
    width: 100px;
    height: 100px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  select {
    border-radius: 20px;
    font-size: 15px;
  }

  button {
    padding: 7px;
    margin-top: 20px;
    margin-bottom: 7px;
    border-radius: 20px;
    font-size: 15px;
  }

  label {
    margin: 4px;
  }
}
