/* opportunity-form.css - Custom styles for the Opportunity form page */

.opportunity-form-section {
    background: #f9f9fb;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    padding: 2.5rem 2rem 2rem 2rem;
    margin: 2rem auto;
    max-width: 900px;
}

.opportunity-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3a4b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-validation-active .form-label {
    font-weight: 600;
    color: #2d3a4b;
    margin-bottom: 0.25rem;
}

.contact-validation-active .form-control,
.contact-validation-active .form-select {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    width: 100%;
    transition: border-color 0.2s;
    box-shadow: none;
}

.contact-validation-active .form-control:focus,
.contact-validation-active .form-select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.08);
}

.contact-validation-active .mb-3 {
    margin-bottom: 1.5rem !important;
}

.contact-validation-active .fullwidth {
    width: 100%;
    margin-bottom: 1.5rem;
}

.contact-validation-active h4.my-4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #007bff;
    margin: 1.5rem 0 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.3rem;
}

.skill-input {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    padding: 1.25rem 1rem;
    margin-bottom: 1.5rem;
}

.btn-without-icon, .submit-btn {
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 1rem 0 0 0;
    display: inline-block;
    transition: background 0.2s;
}

.btn-without-icon:hover, .submit-btn:hover {
    background: linear-gradient(90deg, #0056b3 0%, #007bff 100%);
}

.text-danger {
    color: #dc3545 !important;
}

@media (max-width: 700px) {
    .opportunity-form-section {
        padding: 1.2rem 0.5rem;
    }

    .contact-validation-active .row > [class^="col-"],
    .contact-validation-active .row > [class*=" col-"] {
        width: 100%;
        max-width: 100%;
    }
}
