@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap'); */

*{
    margin: 0px;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: white;
    overflow-x: hidden;
}

.my-nav{
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 2px 2px 5px rgb(196, 196, 197);
    /* backdrop-filter: blur(25px);    */
}

.image{
    display: flex;
    align-items: center;
    justify-content: center;
}

.work{
    position: relative;
    top: 0px;
    animation: move 3s ease-in-out 0.2s infinite alternate;
}

@keyframes move{
    0%{top: 0px;}
    100%{top: 20px;}
}

.apply{
    max-width: 800px;
    margin: 15px 0;
    position: relative;
    /* box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.59); */
    padding: 30px;
    /* backdrop-filter: blur(25px); */
    border-radius: 15px;
}

.apply .title{
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 3px;
    font-size: 3em;
    font-weight: bold;
    line-height: 48px;
    padding-bottom: 20px;
    color: rgb(15, 82, 136);
}

.contact-form .form-field{
    position: relative;
    margin: 35px 0;
    /* border: 1px solid black; */
}

.contact-form .input-text{
    display: block;
    width: 100%;
    height: 35px;
    border-width: 0 0 2px 0;
    border-color: rgb(15, 82, 136);
    font-size: 17px;
    line-height: 26px;
    font-weight: 400;
    background: transparent;
    color: black;
    /* border: 1px solid black; */

}

option{
    color: black;
}

.contact-form .input-text:focus{
    outline: none;
}

.contact-form .form-label{
    position: absolute;
    left: 20px;
    bottom: 2px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: rgb(15, 82, 136);
    cursor: text;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.contact-form .input-text:focus + .form-label,
.contact-form .input-text.non-empty + .form-label,
.contact-form .input-text:not(:placeholder-shown) + .form-label {
  transform: translateY(-24px);
}

.contact-form .submit-btn{
    display: inline-block;
    background-color: rgb(15, 82, 136);
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    padding: 10px 16px;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-top: 0.5em;
}
.contact-form .submit-btn:hover{
    background-color: rgb(20, 131, 222);
   
}

.info{
    position: absolute;
    font-size: 14px;
    letter-spacing: 0.5px;
    top: 35px;
    font-style: italic;
    /* border: 1px solid black; */
}

.validation-error-label{
    position: absolute;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin: 20px 0;
    font-weight: bold;
}

.email-validation-error{
    position: absolute;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin: 3px 0;
    font-weight: bold;
}