

/* Start:/local/templates/asgard/components/bitrix/news/vacancies/style.css?17835030651495*/
/* Стили для сообщения об успешной отправке */
.vacancies-success-message {
    margin-bottom: 2em;
    animation: fadeInUp 0.6s ease;
}

.success-block {
    background: linear-gradient(to top, rgba(195, 152, 106, 0.1), transparent);
    border: 1px solid rgba(195, 152, 106, 0.3);
    border-radius: 10px;
    padding: 3em 4em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.success-icon {
    margin-bottom: 0.5em;
    animation: scaleIn 0.5s ease 0.3s both;
}

.success-title {
    font-family: "Unbounded";
    font-size: 1.9375rem;
    font-weight: 600;
    color: #C3986A;
    margin: 0;
}

.success-subtitle {
    font-size: 1.1875rem;
    color: #969696;
    max-width: 500px;
    margin: 0;
    line-height: 1.5;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Адаптив для мобильных */
@media only screen and (max-width: 800px) {
    .success-block {
        padding: 2em 1.5em;
    }
    
    .success-title {
        font-size: 1.4375rem;
    }
    
    .success-subtitle {
        font-size: 1rem;
    }
}
/* End */
/* /local/templates/asgard/components/bitrix/news/vacancies/style.css?17835030651495 */
