#pum_popup_title_1200{
	font-weight: 700 !important;
	 text-align: center !important;
}

.cf7-black-form {
    background-color: #000;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.cf7-form-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700 !important;
}

.cf7-form-group {
    margin-bottom: 20px;
}

.cf7-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-size: 14px;
}

.cf7-input,
.cf7-textarea {
    width: 100%;
    padding: 12px 15px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.cf7-input:focus,
.cf7-textarea:focus {
    border-color: #555;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.cf7-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Центрирование reCAPTCHA */
.cf7-recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Кнопка отправки */
.cf7-submit-btn {
    background: #222;
    color: #fff;
    border: none;
    padding: 14px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    display: block;
    margin: 0 auto;
}

.cf7-submit-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Сообщения об ошибках */
.wpcf7-not-valid-tip {
    color: #ff6b6b !important;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 15px !important;
    border: none !important;
    border-radius: 5px;
    text-align: center;
}

/* Адаптивность */
@media (max-width: 768px) {
    .cf7-black-form {
        padding: 25px;
    }

    .cf7-form-title {
        font-size: 20px;
    }

    .cf7-submit-btn {
        padding: 12px 20px;
        max-width: 100%;
    }
}