﻿/* =============================================
   Voluntario - RegistroPublico
   ============================================= */

/* Panel lateral de información */
.vp-info-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vp-info-highlight {
    margin-top: 15px;
    font-weight: 500;
    color: #3f7d27;
}

.vp-info-description {
    font-size: 14px;
    line-height: 1.6;
}

.vp-image-wrap {
    margin-top: 30px;
    text-align: center;
}

.vp-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Error de campo especialidad */
.vp-field-error {
    display: none;
    margin-top: 8px;
    padding: 10px 14px;
    background: #fff5f5;
    border: 1px solid #fca5a5;
    border-left: 4px solid #dc3545;
    border-radius: 8px;
    color: #b91c1c;
    font-size: 13px;
}

.vp-field-error i {
    margin-right: 6px;
}

.vp-input-error {
    border-color: #dc3545 !important;
}

/* Textarea motivo */
.vp-textarea {
    height: auto;
    padding-top: 12px;
}

/* Separador */
.vp-divider {
    margin: 25px 0;
    border-color: #edf2ea;
}

/* Etiqueta de sección (días / horarios) */
.vp-section-label {
    color: #3f7d27;
    font-size: 16px;
    margin-bottom: 12px;
}

/* Columnas de checkboxes */
.vp-check-col {
    margin-bottom: 10px;
}

.vp-check-label {
    font-weight: 500;
    cursor: pointer;
}

.vp-check-label input {
    margin-right: 5px;
}

/* Botón de envío */
.vp-submit-btn {
    margin-top: 20px;
}

.vp-btn-icon {
    margin-right: 8px;
}

/* Alerta general */
.vp-alerta {
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Panel de éxito */
.vp-exito {
    display: none;
    text-align: center;
    padding: 50px 20px;
}

.vp-exito-icon {
    width: 80px;
    height: 80px;
    background: #eaf4e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vp-exito-icon i {
    font-size: 38px;
    color: #3f7d27;
}

.vp-exito h3 {
    color: #3f7d27;
    margin-bottom: 10px;
}

.vp-exito p {
    color: #555;
    font-size: 15px;
    margin-bottom: 30px;
}
