html, body{
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body > main,
body > section{
    flex: 1;
}

.applyForm, .formResult{
    max-width: 600px !important;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 55px;
}

.sectionTitle{
    font-size: 1.5625rem;
    font-weight: bold;
    text-transform: uppercase;
}
.sectionSubtitle{
    font-size: 1rem;
    font-weight: 500;
    color: #BBB9B9;
    margin: .9375rem 0;
}
form{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
input, select, textarea{
    font-size: 1rem;
    background: #0C0C0C;
    border: 0;
    outline: 0;
    padding: .75rem 1rem;
    color: #fff;
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.25);
    -webkit-appearance: none;
    resize: none;
}
select{
    cursor: pointer;
}
input::placeholder, textarea::placeholder{
    color: rgba(255, 255, 255, 0.3);
}
select:invalid{
    color: rgba(255, 255, 255, 0.3);
}
.w-half{
    max-width: 290px;
    width: 100%;
}
.w-full{
    width: 100%;
    height: 150px;
}
button{
    font-size: 1.125rem;
    border: 0;
    outline: 0;
    background: #1593EE;
    box-shadow: 0px 0px 6px 2px rgba(21, 147, 238, 0.55);
    width: 100%;
    padding: .625rem;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 300ms;
}
button:hover{
    opacity: 0.8;
}
.formResult{
    display: none;
}
#pForm{
    margin-bottom: 1.5625rem;
}

@media (max-width: 400px) {
    .w-half{
        max-width: 100%;
    }

}