/* Стили для модального окна корпоративного питания */

/* Основные стили модального окна */
.korp-modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.korp-modal-header {
    background: linear-gradient(90deg, rgba(254,115,200,1) 0%, rgba(255,53,176,1) 100%);
    color: white;
    border-bottom: none;
    padding: 20px 25px;
    position: relative;
}

.korp-modal-title-container {
    width: 90%;
}

.korp-modal-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.korp-modal-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 0;
}

.korp-modal-close {
    color: white;
    opacity: 1;
    text-shadow: none;
    position: absolute;
    right: 15px;
    top: 15px;
}

.korp-modal-close:hover {
    color: white;
    opacity: 0.8;
}

.korp-modal-body {
    padding: 25px;
    background-color: white;
}

/* Стили для полей формы */
.korp-input,
.korp-textarea {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.korp-input:focus,
.korp-textarea:focus {
    border-color: rgba(254,115,200,0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(254,115,200,0.25) !important;
    outline: none !important;
}

.form-group label {
    font-weight: 500;
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
}

/* Стиль кнопки */
.korp-submit-btn {
    background: linear-gradient(90deg, rgba(254,115,200,1) 0%, rgba(255,53,176,1) 100%) !important;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 53, 176, 0.3);
    margin-top: 10px;
    transform: none;
}

.korp-submit-btn:hover {
    box-shadow: 0 6px 12px rgba(255, 53, 176, 0.4) !important;
    color: white;
}

.korp-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 53, 176, 0.4) !important;
    color: white;
}

.korp-submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 53, 176, 0.25), 0 4px 10px rgba(255, 53, 176, 0.3) !important;
    color: white;
}

/* Адаптивность */
@media (max-width: 576px) {
    .korp-modal-title {
        font-size: 20px;
    }
    
    .korp-modal-subtitle {
        font-size: 12px;
    }
    
    .korp-modal-body {
        padding: 20px 15px;
    }
    
    .korp-submit-btn {
        width: 100%;
        padding: 10px 20px;
    }
}
.korp-modal-close{
    outline:none !important;
    opacity: 1 !important;
}
.korp-modal-close span{
    color:#fff;
}