
/* neww added */

.hireTalentClass {
    display: block;
}

.banner-lines {
    left: 40% !important;
    top: 30% !important;
}

@media (min-width: 768px) {
    .hireTalentClass {
        display: none;
        left: 62px;
        width: 274px;
    }
}

.form-control {
    line-height: 2.5 !important;
}
#sendDataToApi {
    text-transform: none !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; /* center horizontally */
    gap: 8px; /* space between text and arrow */
}

#sendDataToApi {
    background-color: #2b2b8f;
    color: #fff;
    transition: all 0.3s ease;
}

#sendDataToApi:hover {
    background-color: #1e1e6f;
    transform: translateY(-2px); /* slight lift */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Consent Text */
.consent-text {
    font-size: 10px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.5;
}

.error-msg {
    font-size: 10px;
}

.consent-text a {
    color: #2b2b8f;
    font-weight: 500;
    text-decoration: none;
}

.consent-text a:hover {
    text-decoration: underline;
}

/* Button */
#getStartedToApi, /* fallback if typo */
#sendDataToApi {
    width: 100%;
    background: #2b2b8f;
    color: #fff;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transition: all 0.3s ease;
}

/* Hover Effect */
#sendDataToApi:hover {
    background: #1e1e6f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Arrow Animation */
#sendDataToApi span {
    transition: 0.3s;
}

#sendDataToApi:hover span {
    transform: translateX(5px);
}
/* Make dropdown same as input */
select.form-control {
    height: 55px;
    border-radius: 12px;
    appearance: none;
    background: #fff url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>") no-repeat right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

#no-of-requirement {
    color: #9aa0a6; /* same as placeholder */
}

/* When user selects value → make it dark */
#no-of-requirement:valid {
    color: #212529;
}

