/* WRAPPER GENERAL */
.ph-submit-wrapper {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-top: 40px;
}

/* TITULO */
.ph-submit-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: #111827;
}

/* FORMULARIO */
.ph-submit-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* LABELS */
.ph-submit-wrapper label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
    display: block;
}

/* INPUTS + SELECT + TEXTAREAS */
.ph-submit-wrapper input[type="text"],
.ph-submit-wrapper input[type="file"],
.ph-submit-wrapper textarea,
.ph-submit-wrapper select {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    outline: none;
    transition: 0.2s ease-in-out;
    background: #f9fafb;
}

.ph-submit-wrapper input[type="text"]:focus,
.ph-submit-wrapper textarea:focus,
.ph-submit-wrapper select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.25);
}

/* BOTONES */
.ph-submit-wrapper button[type="submit"] {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.ph-submit-wrapper button[type="submit"]:hover {
    background: #1d4ed8;
}

/* Botón Agregar Video */
.ph-submit-wrapper button[type="button"] {
    padding: 10px 14px;
    background: #e5e7eb;
    color: #111827;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    width: fit-content;
}

.ph-submit-wrapper button[type="button"]:hover {
    background: #d1d5db;
}

/* SELECT MULTIPLE */
.ph-submit-wrapper select[multiple] {
    height: 150px;
    resize: none;
}

/* Espaciado entre campos dinámicos */
#video-fields input {
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .ph-submit-wrapper {
        padding: 20px;
        margin-top: 20px;
    }

    .ph-submit-wrapper h2 {
        font-size: 22px;
    }
}
