/* Estilos específicos para el componente Job Form */

.job-application {
    padding: 80px 20px 0 20px;
    background: linear-gradient(135deg, #002266 0%, #0044A6 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 76vh;
    justify-content: space-evenly;
    align-items: flex-start;
    color: white;
}

.job-info {
    flex: 1;
    max-width: 40%;
    max-width: 615px;
}

.job-info h2 {
    font-family: 'neue-haas-unica', sans-serif;
    font-size: 46px;
    margin-bottom: 25px;
    font-weight: normal;
}

.job-info p {
    font-size: 18.5px;
    line-height: 1.5;
    font-weight: 100;
    color: #96b1e3;
    margin: 0;
    opacity: 0.9;
}

.employees-image img {
    width: auto;
    max-height: 418px;
}

.job-form {
    flex: 1;
    padding: 35px;
    border-radius: 12px;
    max-width: 615px;
}

.form-success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    font-family: 'proxima-nova-condensed', sans-serif;
}

.input-container {
    margin-bottom: 24px;
}

.input-container label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: lighter;
    font-family: 'proxima-nova-condensed', sans-serif;
}

.input-container input {
    width: 100%;
    border: none;
    border-bottom: 1px solid white;
    background-color: transparent;
    font-size: 16px;
    outline: none;
    padding: 8px 0;
    font-family: 'proxima-nova-condensed', sans-serif;
    color: #002266;
}

.input-container input:focus {
    outline: none;
}

.attach-container {
    margin: 60px 0;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-attach {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 80px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 40px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    opacity: 0.9;
    justify-content: center;
    width: 304px;
    transition: background-color 0.2s;
}

.btn-attach:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.document-icon {
    width: 31px;
    height: auto;
    margin-left: 13px;
}

.file-format {
    display: block;
    font-family: 'proxima-nova-condensed', sans-serif;
    font-size: 14px;
    font-style: italic;
    margin-top: 5px;
    opacity: 0.7;
}

.form-check {
    margin-top: 30px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-check-input {
    margin: 0;
    cursor: pointer;
}

.form-check-label {
    font-family: 'proxima-nova-condensed', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    margin: 0;
}

.form-submit {
    margin-top: 40px;
}

.btn-submit {
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
    width: 275px;
    height: 80px;
    background: #002266 0% 0% no-repeat padding-box;
    border-radius: 40px;
    opacity: 1;
}

.btn-submit:hover {
    background-color: #002266;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 68, 166, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .job-application {
        flex-direction: column;
        gap: 40px;
    }
    
    .job-info,
    .job-form {
        max-width: 100%;
    }
    
    .job-form {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .job-application {
        padding: 40px 20px;
    }
    
    .job-info h2 {
        font-size: 28px;
    }
    
    .job-form {
        padding: 30px 20px;
    }
    
    .btn-attach {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .job-application {
        padding: 30px 15px;
    }
    
    .job-info h2 {
        font-size: 24px;
    }
    
    .job-form {
        padding: 20px 15px;
    }
    
    .btn-attach {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .document-icon {
        width: 16px;
        height: 16px;
    }
}
