/* Estilos Premium para Formularios de Videoconferencias */

.videoconf-form-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.videoconf-section {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(23,162,184,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.videoconf-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #17A2B8, #0D7C8F);
}

.videoconf-section:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.videoconf-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(23,162,184,0.1);
}

.videoconf-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #17A2B8, #138496);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(23,162,184,0.3);
}

.videoconf-section-title {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.videoconf-form-group {
    margin-bottom: 2rem;
}

.videoconf-form-group:last-child {
    margin-bottom: 0;
}

.videoconf-label {
    display: block;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.videoconf-label i {
    color: #17A2B8;
    font-size: 1.1rem;
}

.videoconf-label .required {
    color: #e74c3c;
    margin-left: 0.25rem;
}

.videoconf-input,
.videoconf-select,
.videoconf-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.videoconf-input:focus,
.videoconf-select:focus,
.videoconf-textarea:focus {
    outline: none;
    border-color: #17A2B8;
    box-shadow: 0 0 0 4px rgba(23,162,184,0.1);
    transform: translateY(-1px);
}

.videoconf-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.videoconf-input::placeholder,
.videoconf-textarea::placeholder {
    color: #95a5a6;
}

.videoconf-helper-text {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.5;
}

.videoconf-helper-text i {
    color: #3498db;
    margin-top: 0.25rem;
}

.videoconf-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.videoconf-checkbox-group {
    background: linear-gradient(135deg, rgba(23,162,184,0.05), rgba(19,132,150,0.08));
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid rgba(23,162,184,0.15);
    transition: all 0.3s ease;
}

.videoconf-checkbox-group:hover {
    border-color: rgba(23,162,184,0.3);
    background: linear-gradient(135deg, rgba(23,162,184,0.08), rgba(19,132,150,0.12));
}

.videoconf-checkbox-label {
    display: flex;
    align-items: start;
    gap: 1.25rem;
    cursor: pointer;
    user-select: none;
}

.videoconf-checkbox {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.videoconf-checkbox-content {
    flex: 1;
}

.videoconf-checkbox-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.videoconf-checkbox-title i {
    font-size: 1.3rem;
    color: #e74c3c;
}

.videoconf-checkbox-description {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.videoconf-info-box {
    background: linear-gradient(135deg, rgba(23,162,184,0.08), rgba(19,132,150,0.05));
    border-radius: 16px;
    padding: 2.5rem;
    border-left: 5px solid #17A2B8;
    box-shadow: 0 4px 15px rgba(23,162,184,0.1);
}

.videoconf-info-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.videoconf-info-title i {
    font-size: 1.5rem;
    color: #17A2B8;
}

.videoconf-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.videoconf-info-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.6;
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.videoconf-info-list li i {
    color: #27ae60;
    font-size: 1.2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.videoconf-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    padding: 2rem 0 1rem 0;
}

.videoconf-btn {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: inherit;
}

.videoconf-btn-primary {
    background: linear-gradient(135deg, #17A2B8, #138496);
    color: white;
    box-shadow: 0 6px 20px rgba(23,162,184,0.4);
}

.videoconf-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(23,162,184,0.5);
}

.videoconf-btn-secondary {
    background: white;
    color: #7f8c8d;
    border: 2px solid #e1e8ed;
}

.videoconf-btn-secondary:hover {
    border-color: #bdc3c7;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .videoconf-section {
        padding: 1.5rem;
    }
    
    .videoconf-row {
        grid-template-columns: 1fr;
    }
    
    .videoconf-actions {
        flex-direction: column;
    }
    
    .videoconf-btn {
        width: 100%;
        justify-content: center;
    }
}



