
#application-section{
    /* border: 1px solid #A5B4FC; */
    margin: 10px auto;
    padding: 0, 16px;
    border: 10px solid coral;
    animation: mymove 5s infinite;
    width: 95%;
    
}

@keyframes mymove {
    50% {border-color: lightblue;}
  }

#application-form div{
    margin-top: 16px;
    padding-left: 8px;

}
#application-form label{
    font-weight: 600;
}
#application-form input, select{
    padding: 4px;
    margin-top: 4px;
    font-size: 1.6rem;
}
#application-form textarea{
    width: 70%;
    font-family:'Roboto', sans-serif;
}

#application-form button[type="submit"]{
    background-color: #1D4ED8;
    color: #EFF6FF;
    font-weight: 500;
    cursor: pointer;
    font-size: 1.6rem;

}