body{

  margin: 0;
  padding: 0;

  font-family: Arial, sans-serif;

  background:
  linear-gradient(
    to bottom,
    #eef6ea,
    #f5f0e6
  );
}

.apply-section{

  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 40px;
  box-sizing: border-box;
}

.apply-box{

  background: white;

  width: 100%;
  max-width: 700px;

  padding: 40px;

  border-radius: 25px;

  box-shadow:
  0 8px 20px rgba(0,0,0,0.1);

  text-align: center;

  box-sizing: border-box;
}

.apply-box h1{

  color: #2d5a27;
  font-size: 37px;

  margin-bottom: 15px;
}

.apply-box p{

  color: #666;

  margin-bottom: 30px;
}

form input,
form select,
form textarea{

  width: 100%;

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid #ccc;

  border-radius: 10px;

  font-size: 14px;

  box-sizing: border-box;
}
.button-group{

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 15px;

  margin-top: 10px;
}

.button-group a{

  text-decoration: none;
}

.button-group button{

  padding: 14px 30px;

  border: none;

  border-radius: 40px;

  font-size: 15px;

  cursor: pointer;

  transition: 0.3s ease;

  white-space: nowrap;
}

.submit-btn{

  background:
  linear-gradient(
    to right,
    #2d5a27,
    #6f4e37
  );

  color: white;
}

.back-btn{

  background: #e5e5e5;

  color: #333;
}

.submit-btn:hover,
.back-btn:hover{

  transform: scale(1.03);
}

@media screen and (max-width: 768px){

  .apply-section{

    padding: 15px;
  }

  .apply-box{

    padding: 30px 20px;

    border-radius: 20px;
  }

  .apply-box h1{

    font-size: 28px;
  }

  .apply-box p{

    font-size: 14px;
  }

  form input,
  form select,
  form textarea{

    font-size: 14px;

    padding: 14px;
  }

  .button-group{

    display: flex;

    flex-direction: row;

    justify-content: space-between;

    align-items: center;

    gap: 10px;

    width: 100%;
  }

  .button-group a{

    width: 48%;
  }

  .button-group button{

    width: 100%;

    padding: 15px 10px;

    font-size: 14px;

    border-radius: 35px;
  }
}