/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 22 2026 | 12:06:40 */
.job-form {
    max-width: 1100px;
    margin: auto;
}

 

.job-form .row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

 

.job-form .col {
    flex: 1;
    min-width: 250px;
}

 

.job-form .col-full {
    width: 100%;
}

 

.job-form input,
.job-form select {
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #fff;
    padding: 10px 5px;
    background: transparent;
}

 

.job-form input:focus,
.job-form select:focus {
    outline: none;
    border-bottom: 2px solid #00a693;
}

 

.job-form input::placeholder,
.job-form textarea::placeholder {
    color: #000000;   
}

 

.file-label {
    display: block;
    border: 2px dashed #fff;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
}

 

.file-label input[type="file"] {
    display: block;
    margin-top: 10px;
}

 

.job-form input[type="submit"] {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
}

 

.job-form input[type="submit"]:hover {
    background: #007bff;
    color: #fff;
}

 

/* Mobile Responsive */
@media(max-width:768px){
    .job-form .row {
        flex-direction: column;
    }
}


/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

