html,body {
    font-family: Arial, sans-serif;
    margin: 0px;
    width: 100%;
    height: 100%;
}
form {
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 20px;
    padding-top: 0;
}

.form-errors ul {
    padding-left: 0;
}

.form-errors li {
    color: red;
    list-style-type: disc;
    list-style-position: inside;
    font-weight: 400;
}



label {
    /* display: block; */
    margin-bottom: 5px;
    font-size: 14px;
    margin-top: 5px;
}

.applyingPosition{
    font-size: 1rem;
}
.mainpad{
    padding-top: 10px;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 25px;
    box-sizing: border-box;
}

/* input , select{
    outline: 0;
    border-color: #dac314;
} */

  .error {
    border:  2px solid red !important;
    background-color: #e49090;
}


body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

input[type="text"],
input[type="email"],
select {
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 25px;
    box-sizing: border-box;
    appearance: none; /* Removes default styling */
}

.information{
    display: flex;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif ;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-top: 4rem;
}

input[type="file"]{
    display: none;
}

.uploadFile{
    max-width: 200px;
    padding: 10px 5px;
    font-size: 16px;
    font-weight: 300;
    border: 1px solid #000;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: whitesmoke;
    color: #000;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    
}
form .submit {
    padding: 10px 40px;
    border: none;
    background-color: #000;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    margin-left: 200px;
    
}


.uploadtext{
    color: #807979;
    margin: 20px 0px;
}

img {
    width: 100%;
    margin: 0;
    padding: 0;
}
.plus{
font-weight: 800;
padding-left: 5% ;
}



.navbar {
    transition: background-color 0.3s ease;
}


/* Class to apply black background color */
.navbar.scrolled {
    background-color: #2E2E2E /* Change to any color you prefer */
}
select {
    appearance: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #ccc;
    position: relative;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24"><path fill="gray" d="M7 10l5 5 5-5H7z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px top 50%;
    background-size: 30px;
}

/* Keep your existing styles here */

/* Media query for tablets and smaller screens */
@media (max-width: 768px) {
    form {
        padding: 0 10px 20px;
    }
    
    .information {
        font-size: 1.5rem;
    }

    .uploadFile {
        max-width: 100%;
        font-size: 14px;
        padding: 10px;
    }

    input[type="text"],
    input[type="email"],
    select {
        padding: 15px;
    }

    form .submit {
        padding: 10px 20px;
        margin-left: 0;
        width: 100%;
    }
}

/* Media query for mobile phones */
@media (max-width: 400px) {
    .information {
        font-size: 1.2rem;
        margin-top: 3rem;
    }

    input[type="text"],
    input[type="email"],
    select {
        padding: 15px;
    }

    .submit {
        padding: 10px;
        width: 100%;
        font-size: 0.9rem;
    }

    .uploadFile {
        padding: 10px;
        font-size: 12px;
    }

    .uploadtext {
        font-size: 10px;
    }
}