.form-group_jobs {
    position: relative;
    margin-bottom: 1.5rem;
}

input[type="text"],
input[type="email"],
input[type="textarea"]{
    width: 100%;
    padding: 1rem 1rem;
    font-size: 14px;
    border-radius: 0.25rem;
    border: 1px solid #6fccf8;
    transition: all 0.2s ease-in-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="textarea"]:focus{
    outline: none;
    border-color: #289beb;
}

label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    pointer-events: none;
    color: #555;
    font-size: 1.5rem;
    transition: all 0.2s ease-in-out;
}

input[type="text"]:focus + label,
input[type="email"]:focus + label,
input[type="textarea"]:focus + label,
input[type="text"]:not(:placeholder-shown) + label,
input[type="email"]:not(:placeholder-shown) + label,
input[type="textarea"]:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 5px;
    font-size: 14px;
    color: #289beb;
}

.text_area{
    font-size: 14px;
    border-radius: 0.25rem;
    border: 1px solid #6fccf8;
    transition: all 0.2s ease-in-out;
    width: 100%;
}

.text_area:focus + label,
.text_area:not(:placeholder-shown) + label{
    border: 1px solid #6fccf8;
}

textarea {
    width: 100%;
    padding: 1rem 1rem;
    font-size: 14px;
    border-radius: 0.25rem;
    border: 1px solid #6fccf8;
    transition: all 0.2s ease-in-out;
    line-height: 30px;
}

textarea:focus {
    outline: none;
    border-color: #6fccf8;
}

textarea:focus + label,
textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 5px;
    font-size: 14px;
    color: #289beb;
}

.file_upload_style{
    width: 100%;
    padding: 1rem 1rem;
    border-radius: 0.25rem;
    border: 1px solid #6fccf8;
}
