#careers {
    color: #4285F4!important;
    font-weight: 800!important;
}
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.header .container-fluid {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header h1 {
    font-size: 2.5rem!important;
    margin-top: 4rem;
}
p {
    text-align: justify;
    line-height: 1.8;
}
#career-detail li {
    line-height: 2;
}
#career-detail .form-control {
    border-radius: 0!important;
    border-top: none!important;
    border-right: none!important;
    border-left: none!important;
    border-width: 1px!important;
    background: none!important;
}
#career-detail .card .bg-opacity-25 {
    --bs-bg-opacity: 0.02!important;
}
#career-detail ::placeholder {
    color: #CECECE!important; 
}
.form-control {
    color: #b4b4b4;
}

#career-detail .btn::after {
    display: inline-block;
    padding-left: 8px;
    content: "\0279E";
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
#career-detail .btn:hover::after {
    animation: slide1 1s ease-in-out infinite;
}
.career-form {
    width: 70%;
}
.form-control:focus, .form-control:hover {
    box-shadow: rgb(0 57 255 / -25%) 0px 0px 0.25em, rgb(0 91 255 / 9%) 0px 0.25em 1em;
    border-color: #27c8ff;
    background: none;
}
@keyframes slide1 {
    0%,
    100% {
      transform: translate(0, 0);
    }
  
    50% {
      transform: translate(10px, 0);
    }
}

@media (max-width: 1024px) and (min-width: 600px){
    .header {
        height: 350px!important;
    }
    .career-form {
        width: 100%;
    }
}
@media (max-width: 600px){
    .header {
        height: 250px!important;
    }
    .header h1 {
        font-size: 1.5rem!important;
    }
    .p-5 {
        padding: 1rem!important;
    }
    .career-form {
        width: 100%;
    }
    .row {
        display: block!important;
    }
    .card .w-50 {
        width: 100%!important;
    }
    .mb-4 {
        margin-bottom: 1rem!important;
    }
}