.opportunity-form__item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.opportunity-form__item input {
    border: 1px solid #ccc;
    padding: 10px !important;
    border-radius: 5px;
    font-size: 16px;
}

.opportunity-form__submit button {
    margin-top: 20px;
    background-color: #1ead8b;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.opportunity-form__title {
    font-weight: bold;
}

.opportunity-form
.opportunity-form__files {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.opportunity-form__files li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin: 0;
}

/* loading */

.opportunity-form__loading {

    align-items: center;
    gap: 10px;
    display: none;
}

.opportunity-form__loading__spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-top-color: #1ead8b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.opportunity-form__loading.active {
    display: flex;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.opportunity-form__error_feedback {
    display: none;
    color: red;
    font-size: 16px;
    margin-top: 20px;
    background-color: #f8d7da;
    padding: 10px;
    border-radius: 5px;
}

.opportunity-form__download {
    display: none;
    margin-top: 20px;
    background-color: #d7f7ee;
    padding: 10px 15px;
    border-radius: 5px;
}

.opportunity-form__download__title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.opportunity-form__download ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.opportunity-form__download ul li {
    margin-bottom: 10px;
}

.opportunity-form__download ul li a {
    color: #1ead8b;
    text-decoration: none;
}