@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: linear-gradient(to bottom, #af0b0b, #000000);
  /* background-repeat: no-repeat; */
  width: 100vw;
  height: 100vh;
  overflow-y: hidden;
  font-family: 'Poppins', sans-serif;
}

.submit-box {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 400px;
  padding: 40px;
  margin-top: 20px;

  padding-bottom: 50px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}
.submit-logo-div img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  max-width: 150px;
  margin-bottom: 50px;
}
.reg-form-div {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  /* height: auto; */
}

.reg-form-div input {
  background-color: #8B0000;
  color: #ffffff;
  border: none;
  width: 250px;
  /* height: 54px; */
  padding: 15px 5px;
  font-weight: bold;
  flex-shrink: 0;
  margin-bottom: 20px;
  outline: none;
  border-radius: 5px;
}

.reg-form-div select {
  background-color: #8B0000;
  border: none;
  width: 260px;
  /* height: 54px; */
  padding: 15px 5px;
  /* font-weight: bold; */
  flex-shrink: 0;
  margin-bottom: 20px;
  outline: none;
  color: white;
  font-size: 12px;
  font-weight: lighter;
  border-radius: 6px;
}

.reg-form-div select option {
  color: #ffffff;
  font-size: 12px;
  font-weight: lighter;
  background-color: #ffffff62;
}

.reg-form-div input:focus {
  outline: 1px solid #fff;
}

::placeholder {
  color: white;
  font-size: 12px;
  font-weight: lighter;
}

/* submit button */
.submit-btn-div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  border: 2px solid #8B0000;
  height: 100%;
  margin-left: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 5px;
}

.submit-hov:hover {
  background-color: #8B0000;
  color: #fff;
  outline: none;
}

.reg-entries-div-1 {
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.reg-entries-div-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.reg-last-input {
  margin-bottom: 0px !important;
}

.reg-dept-sele {
  width:100%;
}

@media only screen and (max-width: 768px) {
  .reg-form-div {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .reg-entries-div-1 {
    margin-right: 0;
  }

  .submit {
    padding: 5px 20px;
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }

  .reg-dept-sele{
    width: 100%;
  }
  .contact {
    margin-top: 20px;
  }




  .submit-box {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-width: 350px;
    padding: 40px;
    margin-top: 20px;
    padding-bottom: 50px;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
  }
}
